From cb6c7bc5289dcf3471dec5bb24c5b8662efa5821 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Thu, 3 Jun 2021 18:00:19 -0700 Subject: [PATCH 1/7] Update CLI to latest SDK, add soft-delete support. --- .../cognitiveservices/_client_factory.py | 3 + .../cognitiveservices/_help.py | 37 + .../cognitiveservices/_params.py | 2 +- .../cognitiveservices/commands.py | 7 +- .../cognitiveservices/custom.py | 59 +- ...ognitiveservices_account_capabilities.yaml | 133 +- ..._cognitiveservices_account_list_kinds.yaml | 9 +- ...t_cognitiveservices_account_list_skus.yaml | 18 +- ...tiveservices_account_list_skus_legacy.yaml | 128 +- ..._cognitiveservices_account_list_usage.yaml | 183 +- ...ervices_account_public_network_access.yaml | 185 +- ...gnitiveservices_create_api_properties.yaml | 44 +- .../test_cognitiveservices_crud.yaml | 185 +- .../test_cognitiveservices_custom_domain.yaml | 386 +--- .../test_cognitiveservices_encryption.yaml | 622 +---- .../test_cognitiveservices_identity.yaml | 436 +--- ...eservices_identity_assign_when_create.yaml | 169 +- .../test_cognitiveservices_network_rules.yaml | 2051 +++++------------ ...st_cognitiveservices_private_endpoint.yaml | 390 ++-- ...eservices_private_endpoint_connection.yaml | 835 +++---- .../test_cognitiveservices_softdelete.yaml | 495 ++++ ..._cognitiveservices_user_owned_storage.yaml | 124 +- .../tests/latest/test_byox.py | 7 +- .../latest/test_cognitiveservices_command.py | 19 +- .../test_cognitiveservices_softdelete.py | 64 + .../tests/latest/test_custom_domain.py | 9 +- .../tests/latest/test_network_rules.py | 7 +- .../tests/latest/test_private_endpoint.py | 7 +- .../custom.py | 2 +- 29 files changed, 2256 insertions(+), 4360 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_softdelete.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 c1678bf8c63..d61543fbd3a 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 @@ -13,6 +13,9 @@ def get_cognitiveservices_management_client(cli_ctx, *_): def cf_accounts(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).accounts +def cf_deleted_accounts(cli_ctx, *_): + return get_cognitiveservices_management_client(cli_ctx).deleted_accounts + def cf_resource_skus(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).resource_skus 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 720e6960498..98008384a0d 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py @@ -203,3 +203,40 @@ - name: Remove the identity from a Cognitive Services account. text: az cognitiveservices account identity remove --name myresource --resource-group cognitive-services-resource-group """ + +helps['cognitiveservices account list-deleted'] = """ +type: command +short-summary: List soft-deleted Azure Cognitive Services accounts. +long-summary: This article lists the Azure CLI commands for Azure Cognitive Services account and subscription management only. Refer to the documentation at https://docs.microsoft.com/azure/cognitive-services/ for individual services to learn how to use the APIs and supported SDKs. +examples: + - name: List all the Cognitive Services accounts in a subscription. + text: az cognitiveservices account list-deleted +""" + + +helps['cognitiveservices account show-deleted'] = """ +type: command +short-summary: Show a soft-deleted Azure Cognitive Services account. +long-summary: This article lists the Azure CLI commands for Azure Cognitive Services account and subscription management only. Refer to the documentation at https://docs.microsoft.com/azure/cognitive-services/ for individual services to learn how to use the APIs and supported SDKs. +examples: + - name: Show a soft-deleted Azure Cognitive Services account. + text: az cognitiveservices account show-deleted --location eastus --resource-group cognitive-services-resource-group --name cognitive-services-account-name +""" + +helps['cognitiveservices account recover'] = """ +type: command +short-summary: Recover a soft-deleted Azure Cognitive Services account. +long-summary: This article lists the Azure CLI commands for Azure Cognitive Services account and subscription management only. Refer to the documentation at https://docs.microsoft.com/azure/cognitive-services/ for individual services to learn how to use the APIs and supported SDKs. +examples: + - name: Recover a soft-deleted Azure Cognitive Services account. + text: az cognitiveservices account recover --location eastus --resource-group cognitive-services-resource-group --name cognitive-services-account-name +""" + +helps['cognitiveservices account purge'] = """ +type: command +short-summary: Purge a soft-deleted Azure Cognitive Services account. +long-summary: This article lists the Azure CLI commands for Azure Cognitive Services account and subscription management only. Refer to the documentation at https://docs.microsoft.com/azure/cognitive-services/ for individual services to learn how to use the APIs and supported SDKs. +examples: + - name: Purge a soft-deleted Azure Cognitive Services account. + text: az cognitiveservices account purge --location eastus --resource-group cognitive-services-resource-group --name cognitive-services-account-name +""" \ No newline at end of file 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 7b1abeb3686..23baee40f6c 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -147,7 +147,7 @@ def load_arguments(self, _): c.argument('kind', help='the API name of cognitive services account', completer=kind_completer) c.argument('tags', tags_type) - c.argument('key_name', required=True, help='Key name to generate', choices=['key1', 'key2']) + c.argument('key_name', required=True, help='Key name to generate', choices=['Key1', 'Key2']) c.argument('api_properties', api_properties_type) c.argument('custom_domain', help='User domain assigned to the account. Name is the CNAME source.') c.argument('storage', help='The storage accounts for this resource, in JSON array format.') 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 682af74a559..62b9d7e8249 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py @@ -4,7 +4,8 @@ # -------------------------------------------------------------------------------------------- from azure.cli.core.commands import CliCommandType -from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus +from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus,\ + cf_deleted_accounts def load_command_table(self, _): @@ -19,6 +20,10 @@ def load_command_table(self, _): g.show_command('show', 'get') g.custom_command('update', 'update') g.custom_command('list', 'list_resources') + g.show_command('show-deleted', 'get', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) + g.command('list-deleted', 'list', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) + g.command('purge', 'begin_purge', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) + g.custom_command('recover', 'recover') g.custom_command('list-skus', 'list_skus') g.custom_command('list-usage', 'list_usages') g.custom_command('list-kinds', 'list_kinds', client_factory=cf_resource_skus) 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 94f96b0d69a..fff03b51656 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -9,12 +9,12 @@ from knack.util import CLIError from knack.log import get_logger -from azure.mgmt.cognitiveservices.models import Account, Sku,\ +from azure.mgmt.cognitiveservices.models import Account as CognitiveServicesAccount, Sku,\ VirtualNetworkRule, IpRule, NetworkRuleSet, NetworkRuleAction,\ - AccountProperties, ApiProperties,\ - Identity, ResourceIdentityType + AccountProperties as CognitiveServicesAccountProperties, ApiProperties as CognitiveServicesAccountApiProperties,\ + Identity, ResourceIdentityType as IdentityType from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus - +from azure.core.polling import AsyncLROPoller, LROPoller logger = get_logger(__name__) @@ -25,6 +25,15 @@ def list_resources(client, resource_group_name=None): return client.list() +def recover(client, location, resource_group_name, account_name): + properties = CognitiveServicesAccountProperties() + properties.restore = True + params = CognitiveServicesAccount(properties=properties) + params.location = location + + return client.begin_create(resource_group_name, account_name, params).result() + + def list_usages(client, resource_group_name, account_name): """ List usages for Azure Cognitive Services account. @@ -109,16 +118,16 @@ def create( sku = Sku(name=sku_name) - properties = AccountProperties() + properties = CognitiveServicesAccountProperties() if api_properties is not None: - api_properties = ApiProperties.deserialize(api_properties) + api_properties = CognitiveServicesAccountApiProperties.deserialize(api_properties) properties.api_properties = api_properties if custom_domain: properties.custom_sub_domain_name = custom_domain - params = Account(sku=sku, kind=kind, location=location, - properties=properties, tags=tags) + params = CognitiveServicesAccount(sku=sku, kind=kind, location=location, + properties=properties, tags=tags) if assign_identity: - params.identity = Identity(type=ResourceIdentityType.system_assigned) + params.identity = Identity(type=IdentityType.system_assigned) if storage is not None: params.properties.user_owned_storage = json.loads(storage) @@ -126,7 +135,7 @@ def create( if encryption is not None: params.properties.encryption = json.loads(encryption) - return client.begin_create(resource_group_name, account_name, params) + return client.begin_create(resource_group_name, account_name, params).result() def update(client, resource_group_name, account_name, sku_name=None, custom_domain=None, @@ -138,13 +147,13 @@ def update(client, resource_group_name, account_name, sku_name=None, custom_doma sku = Sku(name=sku_name) - properties = AccountProperties() + properties = CognitiveServicesAccountProperties() if api_properties is not None: - api_properties = ApiProperties.deserialize(api_properties) + api_properties = CognitiveServicesAccountApiProperties.deserialize(api_properties) properties.api_properties = api_properties if custom_domain: properties.custom_sub_domain_name = custom_domain - params = Account(sku=sku, properties=properties, tags=tags) + params = CognitiveServicesAccount(sku=sku, properties=properties, tags=tags) if storage is not None: params.properties.user_owned_storage = json.loads(storage) @@ -152,7 +161,7 @@ def update(client, resource_group_name, account_name, sku_name=None, custom_doma if encryption is not None: params.properties.encryption = json.loads(encryption) - return client.begin_update(resource_group_name, account_name, params) + return client.begin_update(resource_group_name, account_name, params).result() def default_network_acls(): @@ -191,11 +200,11 @@ def add_network_rule(client, resource_group_name, account_name, subnet=None, rules.ip_rules = [] rules.ip_rules.append(IpRule(value=ip_address)) - properties = AccountProperties() + properties = CognitiveServicesAccountProperties() properties.network_acls = rules - params = Account(properties=properties) + params = CognitiveServicesAccount(properties=properties) - return client.begin_update(resource_group_name, account_name, params) + return client.begin_update(resource_group_name, account_name, params).result() def remove_network_rule(client, resource_group_name, account_name, ip_address=None, subnet=None, @@ -212,24 +221,24 @@ def remove_network_rule(client, resource_group_name, account_name, ip_address=No if ip_address: rules.ip_rules = [x for x in rules.ip_rules if x.value != ip_address] - properties = AccountProperties() + properties = CognitiveServicesAccountProperties() properties.network_acls = rules - params = Account(properties=properties) + params = CognitiveServicesAccount(properties=properties) - return client.begin_update(resource_group_name, account_name, params) + return client.begin_update(resource_group_name, account_name, params).result() def identity_assign(client, resource_group_name, account_name): - params = Account() - params.identity = Identity(type=ResourceIdentityType.system_assigned) + params = CognitiveServicesAccount() + params.identity = Identity(type=IdentityType.system_assigned) sa = client.begin_update(resource_group_name, account_name, params).result() return sa.identity if sa.identity else {} def identity_remove(client, resource_group_name, account_name): - params = Account() - params.identity = Identity(type=ResourceIdentityType.none) - client.begin_update(resource_group_name, account_name, params) + params = CognitiveServicesAccount() + params.identity = Identity(type=IdentityType.none) + client.begin_update(resource_group_name, account_name, params).wait() def identity_show(client, resource_group_name, account_name): 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 9b4355f2b3c..6fff84db5fe 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 @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003578-0000-3300-0000-60c807350000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:40.1360363Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:40.1360363Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:41.0134455Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0d00db3b-0000-3300-0000-60b97b3c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:00:43.8249027Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:00:43.8249027Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:00:44.4058473Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/298a4e65-312e-4121-a117-eb028c2b59b9?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/fd11ac50-10a2-45c6-9393-9b92a65ff43a?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1396' + - '1394' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:42 GMT + - Fri, 04 Jun 2021 01:00:45 GMT etag: - - '"00003578-0000-3300-0000-60c807350000"' + - '"0d00db3b-0000-3300-0000-60b97b3c0000"' expires: - '-1' pragma: @@ -48,110 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '522' + - '925' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/298a4e65-312e-4121-a117-eb028c2b59b9?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/298a4e65-312e-4121-a117-eb028c2b59b9","name":"298a4e65-312e-4121-a117-eb028c2b59b9","status":"Succeeded","startTime":"2021-06-15T01:49:41Z","endTime":"2021-06-15T01:49:42Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00003678-0000-3300-0000-60c807360000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:40.1360363Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:40.1360363Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:41.0134455Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1397' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:13 GMT - etag: - - '"00003678-0000-3300-0000-60c807360000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK - request: body: null headers: @@ -166,23 +69,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003678-0000-3300-0000-60c807360000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:40.1360363Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:40.1360363Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:41.0134455Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0d00dc3b-0000-3300-0000-60b97b3d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:00:43.8249027Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:00:43.8249027Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:00:44.4058473Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1397' + - '1395' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:23 GMT + - Fri, 04 Jun 2021 01:01:15 GMT etag: - - '"00003678-0000-3300-0000-60c807360000"' + - '"0d00dc3b-0000-3300-0000-60b97b3d0000"' expires: - '-1' pragma: @@ -198,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '13' status: code: 200 message: OK @@ -218,7 +122,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -230,7 +135,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:50:30 GMT + - Fri, 04 Jun 2021 01:01:17 GMT expires: - '-1' pragma: @@ -242,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '89' + - '112' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 da130b5446f..0eac5bb1e46 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 @@ -11,21 +11,22 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S","tier":"Standard","kind":"TextAnalytics","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","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":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","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":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","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":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","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":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '201739' + - '314831' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:35 GMT + - Fri, 04 Jun 2021 01:03:09 GMT expires: - '-1' pragma: 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 c3353065b31..bd015ec02c1 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 @@ -13,21 +13,22 @@ interactions: ParameterSetName: - --kind User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S","tier":"Standard","kind":"TextAnalytics","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","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":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","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":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","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":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","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":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '201739' + - '314831' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:35 GMT + - Fri, 04 Jun 2021 01:03:10 GMT expires: - '-1' pragma: @@ -55,21 +56,22 @@ interactions: ParameterSetName: - --kind --location User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S","tier":"Standard","kind":"TextAnalytics","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","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":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","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":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","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":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","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":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '201739' + - '314831' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:35 GMT + - Fri, 04 Jun 2021 01:03:10 GMT expires: - '-1' pragma: 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 d19584d33a5..2d6d21cf8be 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westeurope", "properties": - {}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {}}' headers: Accept: - application/json @@ -12,31 +12,32 @@ interactions: Connection: - keep-alive Content-Length: - - '83' + - '96' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"09004754-0000-0d00-0000-60c807340000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.7317067Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.7317067Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.3933038Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"10004f0f-0000-3300-0000-60bc14b80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:07.9487337Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:20:07.9487337Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:20:08.1873617Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/85bc0b1f-93a1-402b-b56b-3f41f110c3ed?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5bd55f4e-5039-4854-9605-095df34f83f7?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1434' + - '2637' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:41 GMT + - Sun, 06 Jun 2021 00:20:08 GMT etag: - - '"09004754-0000-0d00-0000-60c807340000"' + - '"10004f0f-0000-3300-0000-60bc14b80000"' expires: - '-1' pragma: @@ -48,110 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '388' + - '455' x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/85bc0b1f-93a1-402b-b56b-3f41f110c3ed?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/85bc0b1f-93a1-402b-b56b-3f41f110c3ed","name":"85bc0b1f-93a1-402b-b56b-3f41f110c3ed","status":"Succeeded","startTime":"2021-06-15T01:49:40Z","endTime":"2021-06-15T01:49:46Z"}' - headers: - cache-control: - - no-cache - content-length: - - '308' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '55' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"09004b54-0000-0d00-0000-60c8073a0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.7317067Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.7317067Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.3933038Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1435' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:12 GMT - etag: - - '"09004b54-0000-0d00-0000-60c8073a0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK - request: body: null headers: @@ -166,7 +69,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -180,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:14 GMT + - Sun, 06 Jun 2021 00:20:39 GMT expires: - '-1' pragma: @@ -196,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '20' status: code: 200 message: OK 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 662b55074a3..b06a6d41e15 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westeurope", + body: '{"kind": "TextAnalytics", "sku": {"name": "S0"}, "location": "westeurope", "properties": {}}' headers: Accept: @@ -12,33 +12,33 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '92' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"09006a54-0000-0d00-0000-60c807760000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:45.7394494Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:45.7394494Z"},"location":"westeurope","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:45.8512237Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/","questionAnswering":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"3101f093-0000-0d00-0000-60b998b80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:06:31.8528338Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:06:31.8528338Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:06:32.4257198Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text + Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/34f1177d-c487-4c81-82bd-7def2969908e?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/e3511a49-3e83-4a76-a1e2-938fda65cc72?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2943' + - '1460' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:46 GMT + - Fri, 04 Jun 2021 03:06:33 GMT etag: - - '"09006a54-0000-0d00-0000-60c807760000"' + - '"3101f093-0000-0d00-0000-60b998b80000"' expires: - '-1' pragma: @@ -50,160 +50,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '521' + - '691' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/34f1177d-c487-4c81-82bd-7def2969908e?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/34f1177d-c487-4c81-82bd-7def2969908e","name":"34f1177d-c487-4c81-82bd-7def2969908e","status":"Creating","startTime":"2021-06-15T01:50:46Z"}' - headers: - cache-control: - - no-cache - content-length: - - '274' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '93' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/34f1177d-c487-4c81-82bd-7def2969908e?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/34f1177d-c487-4c81-82bd-7def2969908e","name":"34f1177d-c487-4c81-82bd-7def2969908e","status":"Succeeded","startTime":"2021-06-15T01:50:46Z","endTime":"2021-06-15T01:51:28Z"}' - headers: - cache-control: - - no-cache - content-length: - - '308' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '61' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"09007b54-0000-0d00-0000-60c807a00000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:45.7394494Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:45.7394494Z"},"location":"westeurope","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:45.8512237Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/","questionAnswering":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '2944' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:50 GMT - etag: - - '"09007b54-0000-0d00-0000-60c807a00000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK - request: body: null headers: @@ -218,21 +70,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: body: - string: '{"value":[]}' + string: '{"value":[{"name":{"value":"CognitiveServices.TextAnalytics.Commitment.S0","localizedValue":"CognitiveServices.TextAnalytics.Commitment.S0"},"status":"Included","currentValue":0.0,"limit":25000.0,"nextResetTime":"2021-07-01T00:00:00Z"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '237' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:50 GMT + - Fri, 04 Jun 2021 03:07:04 GMT expires: - '-1' pragma: @@ -248,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '95' + - '123' status: code: 200 message: OK 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 ca8ededb35b..c0072b72193 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 @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003478-0000-3300-0000-60c807350000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9018955Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9018955Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.8954715Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0d00ef3b-0000-3300-0000-60b97b610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:01:21.3647266Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:01:21.3647266Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:01:21.7773491Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f3799054-fcbd-4cc3-9232-e18fcd872715?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f6c4fb5f-b98d-4715-bf10-517bff8307ab?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1443' + - '1441' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:42 GMT + - Fri, 04 Jun 2021 01:01:22 GMT etag: - - '"00003478-0000-3300-0000-60c807350000"' + - '"0d00ef3b-0000-3300-0000-60b97b610000"' expires: - '-1' pragma: @@ -48,160 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '528' + - '478' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f3799054-fcbd-4cc3-9232-e18fcd872715?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f3799054-fcbd-4cc3-9232-e18fcd872715","name":"f3799054-fcbd-4cc3-9232-e18fcd872715","status":"Succeeded","startTime":"2021-06-15T01:49:41Z","endTime":"2021-06-15T01:49:48Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '78' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00003e78-0000-3300-0000-60c8073c0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9018955Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9018955Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.8954715Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1444' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:12 GMT - etag: - - '"00003e78-0000-3300-0000-60c8073c0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00003e78-0000-3300-0000-60c8073c0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9018955Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9018955Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.8954715Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1444' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:14 GMT - etag: - - '"00003e78-0000-3300-0000-60c8073c0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK - request: body: null headers: @@ -216,23 +69,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003e78-0000-3300-0000-60c8073c0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9018955Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9018955Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:40.8954715Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0d00f03b-0000-3300-0000-60b97b670000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:01:21.3647266Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:01:21.3647266Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:01:21.7773491Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1444' + - '1442' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:33 GMT + - Fri, 04 Jun 2021 01:01:52 GMT etag: - - '"00003e78-0000-3300-0000-60c8073c0000"' + - '"0d00f03b-0000-3300-0000-60b97b670000"' expires: - '-1' pragma: @@ -248,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '13' status: code: 200 message: OK @@ -268,7 +122,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -280,7 +135,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:50:40 GMT + - Fri, 04 Jun 2021 01:01:55 GMT expires: - '-1' pragma: @@ -292,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '79' + - '91' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 baf3d9acfd4..3a2b40926ce 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 @@ -18,23 +18,24 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580026fc-0000-0700-0000-60c807340000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.2617009Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.2617009Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:39.901201Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"8800c4ae-0000-0700-0000-60b97e050000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:12:36.9324908Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:12:36.9324908Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:12:37.1391963Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1202' + - '1201' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:40 GMT + - Fri, 04 Jun 2021 01:12:37 GMT etag: - - '"580026fc-0000-0700-0000-60c807340000"' + - '"8800c4ae-0000-0700-0000-60b97e050000"' expires: - '-1' pragma: @@ -46,9 +47,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '618' + - '900' x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -68,7 +69,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -80,7 +82,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:49:47 GMT + - Fri, 04 Jun 2021 01:12:40 GMT expires: - '-1' pragma: @@ -92,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '62' + - '65' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -117,23 +119,24 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580070fc-0000-0700-0000-60c807420000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:53.201516Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:53.201516Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:53.8390212Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"8800e5ae-0000-0700-0000-60b97e0a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:12:42.286541Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:12:42.286541Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:12:42.4429369Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1201' + - '1199' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:56 GMT + - Fri, 04 Jun 2021 01:12:42 GMT etag: - - '"580070fc-0000-0700-0000-60c807420000"' + - '"8800e5ae-0000-0700-0000-60b97e0a0000"' expires: - '-1' pragma: @@ -145,9 +148,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '544' + - '587' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -167,7 +170,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -179,7 +183,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:50:03 GMT + - Fri, 04 Jun 2021 01:12:46 GMT expires: - '-1' pragma: @@ -191,7 +195,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '71' + - '63' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 4490854c34a..dc59598e136 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westeurope", "properties": - {}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {}}' headers: Accept: - application/json @@ -12,31 +12,32 @@ interactions: Connection: - keep-alive Content-Length: - - '83' + - '96' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"09006e54-0000-0d00-0000-60c807800000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:55.985134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:55.985134Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:56.6006376Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"1000e411-0000-3300-0000-60bc17e10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:37.1658138Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/b38c1141-9704-4057-81a9-30409237e357?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6581ad39-0c59-4eff-8708-43b710af9fb7?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1424' + - '2629' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:58 GMT + - Sun, 06 Jun 2021 00:33:37 GMT etag: - - '"09006e54-0000-0d00-0000-60c807800000"' + - '"1000e411-0000-3300-0000-60bc17e10000"' expires: - '-1' pragma: @@ -48,110 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '325' + - '270' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/b38c1141-9704-4057-81a9-30409237e357?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/b38c1141-9704-4057-81a9-30409237e357","name":"b38c1141-9704-4057-81a9-30409237e357","status":"Succeeded","startTime":"2021-06-15T01:50:56Z","endTime":"2021-06-15T01:50:57Z"}' - headers: - cache-control: - - no-cache - content-length: - - '308' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 - 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":"\"09006f54-0000-0d00-0000-60c807810000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:55.985134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:55.985134Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:56.6006376Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1425' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:29 GMT - etag: - - '"09006f54-0000-0d00-0000-60c807810000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '11' - status: - code: 200 - message: OK - request: body: null headers: @@ -166,23 +69,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"09006f54-0000-0d00-0000-60c807810000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:55.985134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:55.985134Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:56.6006376Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"1000e511-0000-3300-0000-60bc17e30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:37.1658138Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1425' + - '2630' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:29 GMT + - Sun, 06 Jun 2021 00:34:07 GMT etag: - - '"09006f54-0000-0d00-0000-60c807810000"' + - '"1000e511-0000-3300-0000-60bc17e30000"' expires: - '-1' pragma: @@ -198,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '7' + - '10' status: code: 200 message: OK @@ -221,23 +125,24 @@ interactions: ParameterSetName: - -n -g --sku --tags User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"09007d54-0000-0d00-0000-60c807a40000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:55.985134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:31.6423336Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:56.6006376Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"1000f911-0000-3300-0000-60bc18010000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}' headers: cache-control: - no-cache content-length: - - '1471' + - '2674' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:34 GMT + - Sun, 06 Jun 2021 00:34:09 GMT etag: - - '"09007d54-0000-0d00-0000-60c807a40000"' + - '"1000f911-0000-3300-0000-60bc18010000"' expires: - '-1' pragma: @@ -253,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '33' + - '34' x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -275,12 +180,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/listKeys?api-version=2021-04-30 response: body: - string: '{"key1":"6272066338b3412aa1efece012e61abd","key2":"101b664e1d10499a8096ea55e23a40c3"}' + string: '{"key1":"27adcace9a0244d9a6b27fd62aa2f2f2","key2":"3b214e9704454ebea41ec6a118a80998"}' headers: cache-control: - no-cache @@ -289,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:36 GMT + - Sun, 06 Jun 2021 00:34:09 GMT expires: - '-1' pragma: @@ -305,14 +211,14 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '43' + - '38' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 200 message: OK - request: - body: '{"keyName": "key1"}' + body: '{"keyName": "Key1"}' headers: Accept: - application/json @@ -329,12 +235,13 @@ interactions: ParameterSetName: - -n -g --key-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/regenerateKey?api-version=2021-04-30 response: body: - string: '{"key1":"c3e9b715c1a94509832d277ac682e813","key2":"101b664e1d10499a8096ea55e23a40c3"}' + string: '{"key1":"7cd7f52a1d744abca83661b0fc30bea7","key2":"3b214e9704454ebea41ec6a118a80998"}' headers: cache-control: - no-cache @@ -343,7 +250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:38 GMT + - Sun, 06 Jun 2021 00:34:10 GMT expires: - '-1' pragma: @@ -359,7 +266,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '68' + - '107' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -379,21 +286,22 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts?api-version=2021-04-30 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":"\"09008154-0000-0d00-0000-60c807aa0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:55.985134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:31.6423336Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"Face","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:56.6006376Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westeurope.api.cognitive.microsoft.com/"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"1000fd11-0000-3300-0000-60bc18020000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}]}' headers: cache-control: - no-cache content-length: - - '1483' + - '2686' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:39 GMT + - Sun, 06 Jun 2021 00:34:10 GMT expires: - '-1' pragma: @@ -409,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '15' + - '40' status: code: 200 message: OK @@ -429,7 +337,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 response: @@ -441,7 +350,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:51:47 GMT + - Sun, 06 Jun 2021 00:34:13 GMT expires: - '-1' pragma: @@ -453,9 +362,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '68' + - '80' x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK 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 3b6b8c51460..b14cf2032b8 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": - {"customSubDomainName": "csclitest000003"}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -12,31 +12,32 @@ interactions: Connection: - keep-alive Content-Length: - - '120' + - '137' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --yes --custom-domain User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800effc-0000-0700-0000-60c807550000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:13.5783097Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:13.5783097Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:13.8259032Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"10001e13-0000-3300-0000-60bc19330000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:14.5083564Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:14.5083564Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:39:14.9325476Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/696d6022-c829-4eb3-823e-05bb8cce41b7?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ae728ef5-1dfd-4beb-98be-e2dff5ef8cd4?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1483' + - '2684' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:15 GMT + - Sun, 06 Jun 2021 00:39:15 GMT etag: - - '"5800effc-0000-0700-0000-60c807550000"' + - '"10001e13-0000-3300-0000-60bc19330000"' expires: - '-1' pragma: @@ -48,110 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '960' + - '948' x-ms-ratelimit-remaining-subscription-writes: - '1198' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/696d6022-c829-4eb3-823e-05bb8cce41b7?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/696d6022-c829-4eb3-823e-05bb8cce41b7","name":"696d6022-c829-4eb3-823e-05bb8cce41b7","status":"Succeeded","startTime":"2021-06-15T01:50:14Z","endTime":"2021-06-15T01:50:22Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '164' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"58001ffd-0000-0700-0000-60c8075e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:13.5783097Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:13.5783097Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:13.8259032Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1484' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:48 GMT - etag: - - '"58001ffd-0000-0700-0000-60c8075e0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK - request: body: null headers: @@ -168,7 +71,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -180,7 +84,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:50:58 GMT + - Sun, 06 Jun 2021 00:39:48 GMT expires: - '-1' pragma: @@ -192,15 +96,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '69' + - '83' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: code: 200 message: OK - request: - body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": - {}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {}}' headers: Accept: - application/json @@ -211,31 +115,32 @@ interactions: Connection: - keep-alive Content-Length: - - '79' + - '96' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580033fe-0000-0700-0000-60c807870000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:51:02.6656094Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:02.6656094Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:51:03.3001884Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"10004913-0000-3300-0000-60bc19560000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:50.1359784Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/2e007d92-5020-404c-ba8b-09ae5a288902?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/64272b51-bdf3-445d-b3ca-06593ebdf126?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1422' + - '2637' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:04 GMT + - Sun, 06 Jun 2021 00:39:50 GMT etag: - - '"580033fe-0000-0700-0000-60c807870000"' + - '"10004913-0000-3300-0000-60bc19560000"' expires: - '-1' pragma: @@ -247,110 +152,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '393' + - '314' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/2e007d92-5020-404c-ba8b-09ae5a288902?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/2e007d92-5020-404c-ba8b-09ae5a288902","name":"2e007d92-5020-404c-ba8b-09ae5a288902","status":"Succeeded","startTime":"2021-06-15T01:51:03Z","endTime":"2021-06-15T01:51:05Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '5' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"580039fe-0000-0700-0000-60c807880000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:51:02.6656094Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:02.6656094Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:51:03.3001884Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1423' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:34 GMT - etag: - - '"580039fe-0000-0700-0000-60c807880000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '7' - status: - code: 200 - message: OK - request: body: null headers: @@ -365,23 +172,24 @@ interactions: ParameterSetName: - -n -g --custom-domain User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580039fe-0000-0700-0000-60c807880000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:51:02.6656094Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:02.6656094Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:51:03.3001884Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"10004b13-0000-3300-0000-60bc19570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:50.1359784Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1423' + - '2638' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:38 GMT + - Sun, 06 Jun 2021 00:40:20 GMT etag: - - '"580039fe-0000-0700-0000-60c807880000"' + - '"10004b13-0000-3300-0000-60bc19570000"' expires: - '-1' pragma: @@ -397,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '13' status: code: 200 message: OK @@ -419,29 +227,30 @@ interactions: ParameterSetName: - -n -g --custom-domain User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580012ff-0000-0700-0000-60c807ab0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:51:02.6656094Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:39.8182205Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:51:03.3001884Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000005.cognitiveservices.azure.com/"}}}' + 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":"\"10007a13-0000-3300-0000-60bc19760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:40:22.0260177Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000005.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/66d48b44-31ea-4d6a-a8f2-8196aec54a4d?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/3c07dc80-07ff-4688-80d7-4cdf0b071e19?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1483' + - '2684' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:39 GMT + - Sun, 06 Jun 2021 00:40:22 GMT etag: - - '"580012ff-0000-0700-0000-60c807ab0000"' + - '"10007a13-0000-3300-0000-60bc19760000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/66d48b44-31ea-4d6a-a8f2-8196aec54a4d?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/3c07dc80-07ff-4688-80d7-4cdf0b071e19?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -451,110 +260,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '723' + - '1016' x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account update - Connection: - - keep-alive - ParameterSetName: - - -n -g --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/66d48b44-31ea-4d6a-a8f2-8196aec54a4d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/66d48b44-31ea-4d6a-a8f2-8196aec54a4d","name":"66d48b44-31ea-4d6a-a8f2-8196aec54a4d","status":"Succeeded","startTime":"2021-06-15T01:51:40Z","endTime":"2021-06-15T01:51:42Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account update - Connection: - - keep-alive - ParameterSetName: - - -n -g --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"580022ff-0000-0700-0000-60c807ad0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:51:02.6656094Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:39.8182205Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:51:03.3001884Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000005.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1484' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:11 GMT - etag: - - '"580022ff-0000-0700-0000-60c807ad0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK - request: body: null headers: @@ -571,7 +282,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -583,7 +295,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:52:15 GMT + - Sun, 06 Jun 2021 00:40:54 GMT expires: - '-1' pragma: @@ -595,9 +307,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '68' + - '77' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK 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 b5e4e2add94..a8d7157ce05 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 @@ -1,7 +1,8 @@ interactions: - request: - body: '{"kind": "Face", "sku": {"name": "E0"}, "identity": {"type": "SystemAssigned"}, - "location": "centraluseuap", "properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "identity": {"type": + "SystemAssigned"}, "location": "centraluseuap", "properties": {"encryption": + {"keySource": "Microsoft.CognitiveServices"}}}' headers: Accept: - application/json @@ -12,31 +13,32 @@ interactions: Connection: - keep-alive Content-Length: - - '184' + - '194' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --encryption --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003978-0000-3300-0000-60c807390000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9299134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9299134Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:45.2735182Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"7f7d5518-6960-4534-ac1a-6ad8a8fa300e","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00265a-0000-3300-0000-60b9942d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:07.4953226Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:07.4953226Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:47:08.9419381Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"a4c79407-23c5-4d45-806d-ed0ee7fa19d9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/66fd1d59-96dc-4a7c-b06e-bc8b97473e07?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1698' + - '2862' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:47 GMT + - Fri, 04 Jun 2021 02:47:08 GMT etag: - - '"00003978-0000-3300-0000-60c807390000"' + - '"0d00265a-0000-3300-0000-60b9942d0000"' expires: - '-1' pragma: @@ -48,254 +50,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '236' + - '511' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --encryption --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","name":"e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","status":"Creating","startTime":"2021-06-15T01:49:45Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '94' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --encryption --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","name":"e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","status":"Creating","startTime":"2021-06-15T01:49:45Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '44' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --encryption --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","name":"e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","status":"Creating","startTime":"2021-06-15T01:49:45Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '52' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --encryption --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","name":"e7a05b0d-b27f-4990-9cff-b0db2f5d4d5d","status":"Succeeded","startTime":"2021-06-15T01:49:45Z","endTime":"2021-06-15T01:51:25Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '5' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --encryption --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00006d78-0000-3300-0000-60c8079d0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9299134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9299134Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:45.2735182Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"7f7d5518-6960-4534-ac1a-6ad8a8fa300e","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '1699' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:51 GMT - etag: - - '"00006d78-0000-3300-0000-60c8079d0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK - request: body: null headers: @@ -310,23 +70,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00006d78-0000-3300-0000-60c8079d0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.9299134Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.9299134Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:49:45.2735182Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"7f7d5518-6960-4534-ac1a-6ad8a8fa300e","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00295a-0000-3300-0000-60b9942d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:07.4953226Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:07.4953226Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:47:08.9419381Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"a4c79407-23c5-4d45-806d-ed0ee7fa19d9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1699' + - '2863' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:53 GMT + - Fri, 04 Jun 2021 02:47:54 GMT etag: - - '"00006d78-0000-3300-0000-60c8079d0000"' + - '"0d00295a-0000-3300-0000-60b9942d0000"' expires: - '-1' pragma: @@ -342,7 +103,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '84' status: code: 200 message: OK @@ -362,7 +123,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -374,7 +136,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:52:00 GMT + - Fri, 04 Jun 2021 02:47:57 GMT expires: - '-1' pragma: @@ -386,15 +148,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '90' + - '121' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK - request: - body: '{"kind": "Face", "sku": {"name": "E0"}, "identity": {"type": "SystemAssigned"}, - "location": "centraluseuap", "properties": {}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "identity": {"type": + "SystemAssigned"}, "location": "centraluseuap", "properties": {}}' headers: Accept: - application/json @@ -405,31 +167,32 @@ interactions: Connection: - keep-alive Content-Length: - - '126' + - '136' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00007878-0000-3300-0000-60c807c90000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:06.3783996Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d006b5a-0000-3300-0000-60b994610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1cfc86a5-0581-4e22-89e5-e374b14ca9e9?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1641' + - '2805' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:11 GMT + - Fri, 04 Jun 2021 02:48:00 GMT etag: - - '"00007878-0000-3300-0000-60c807c90000"' + - '"0d006b5a-0000-3300-0000-60b994610000"' expires: - '-1' pragma: @@ -441,9 +204,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '419' + - '296' x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -451,177 +214,34 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","name":"94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","status":"Creating","startTime":"2021-06-15T01:52:09Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","name":"94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","status":"Creating","startTime":"2021-06-15T01:52:09Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","name":"94fddbcf-d629-4a3e-8d69-f29b6ceb8cb2","status":"Succeeded","startTime":"2021-06-15T01:52:09Z","endTime":"2021-06-15T01:53:12Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '5' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00009478-0000-3300-0000-60c808080000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:06.3783996Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00725a-0000-3300-0000-60b994620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1642' + - '2806' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:42 GMT + - Fri, 04 Jun 2021 02:48:31 GMT etag: - - '"00009478-0000-3300-0000-60c808080000"' + - '"0d00725a-0000-3300-0000-60b994620000"' expires: - '-1' pragma: @@ -637,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '9' status: code: 200 message: OK @@ -655,23 +275,24 @@ interactions: ParameterSetName: - -n -g --encryption User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00009478-0000-3300-0000-60c808080000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:06.3783996Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00725a-0000-3300-0000-60b994620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1642' + - '2806' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:44 GMT + - Fri, 04 Jun 2021 02:48:32 GMT etag: - - '"00009478-0000-3300-0000-60c808080000"' + - '"0d00725a-0000-3300-0000-60b994620000"' expires: - '-1' pragma: @@ -687,12 +308,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12' + - '14' status: code: 200 message: OK - request: - body: '{"sku": {"name": "E0"}, "properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}}' + body: '{"sku": {"name": "S0"}, "properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}}' headers: Accept: - application/json @@ -709,29 +330,30 @@ interactions: ParameterSetName: - -n -g --encryption User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00009a78-0000-3300-0000-60c8082a0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:46.239504Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00955a-0000-3300-0000-60b994810000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:48:33.2797326Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/350602ac-a4a7-49c7-bdf5-2f711ad57d73?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f74e2c0a-b84f-426a-8b53-fceeab4c0658?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1697' + - '2862' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:46 GMT + - Fri, 04 Jun 2021 02:48:33 GMT etag: - - '"00009a78-0000-3300-0000-60c8082a0000"' + - '"0d00955a-0000-3300-0000-60b994810000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/350602ac-a4a7-49c7-bdf5-2f711ad57d73?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f74e2c0a-b84f-426a-8b53-fceeab4c0658?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -741,110 +363,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '455' + - '418' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 202 message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account update - Connection: - - keep-alive - ParameterSetName: - - -n -g --encryption - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/350602ac-a4a7-49c7-bdf5-2f711ad57d73?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/350602ac-a4a7-49c7-bdf5-2f711ad57d73","name":"350602ac-a4a7-49c7-bdf5-2f711ad57d73","status":"Succeeded","startTime":"2021-06-15T01:53:46Z","endTime":"2021-06-15T01:53:53Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account update - Connection: - - keep-alive - ParameterSetName: - - -n -g --encryption - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00009d78-0000-3300-0000-60c808310000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:46.239504Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '1698' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:17 GMT - etag: - - '"00009d78-0000-3300-0000-60c808310000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK - request: body: null headers: @@ -859,23 +383,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00009d78-0000-3300-0000-60c808310000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:52:06.3783996Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:46.239504Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:52:09.5984756Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"f07fc7df-8ffb-4dca-b9c3-9c7c9db4fea7","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00985a-0000-3300-0000-60b994820000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:48:33.2797326Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1698' + - '2863' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:54:18 GMT + - Fri, 04 Jun 2021 02:49:04 GMT etag: - - '"00009d78-0000-3300-0000-60c808310000"' + - '"0d00985a-0000-3300-0000-60b994820000"' expires: - '-1' pragma: @@ -891,7 +416,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '14' + - '12' status: code: 200 message: OK @@ -911,7 +436,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -923,7 +449,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:54:25 GMT + - Fri, 04 Jun 2021 02:49:06 GMT expires: - '-1' pragma: @@ -935,7 +461,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '78' + - '114' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 d1fb49cd8ec..f078fdb003a 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 @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000ad78-0000-3300-0000-60c8085f0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:38.2642813Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"1000410d-0000-3300-0000-60bc12680000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93d44b97-9082-4221-bc4d-013e8112a2a3?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1473' + - '1470' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:54:40 GMT + - Sun, 06 Jun 2021 00:10:16 GMT etag: - - '"0000ad78-0000-3300-0000-60c8085f0000"' + - '"1000410d-0000-3300-0000-60bc12680000"' expires: - '-1' pragma: @@ -48,9 +49,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '281' + - '265' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -58,79 +59,34 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","name":"63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","status":"Creating","startTime":"2021-06-15T01:54:39Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:55:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '12' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","name":"63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","status":"Creating","startTime":"2021-06-15T01:54:39Z"}' + 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":"\"1000570d-0000-3300-0000-60bc12880000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: cache-control: - no-cache content-length: - - '277' + - '1470' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:55:41 GMT + - Sun, 06 Jun 2021 00:11:02 GMT + etag: + - '"1000570d-0000-3300-0000-60bc12880000"' expires: - '-1' pragma: @@ -154,31 +110,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","name":"63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","status":"Creating","startTime":"2021-06-15T01:54:39Z"}' + 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":"\"1000570d-0000-3300-0000-60bc12880000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: cache-control: - no-cache content-length: - - '277' + - '1470' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:11 GMT + - Sun, 06 Jun 2021 00:11:17 GMT + etag: + - '"1000570d-0000-3300-0000-60bc12880000"' expires: - '-1' pragma: @@ -194,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '6' + - '10' status: code: 200 message: OK @@ -202,31 +161,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","name":"63d60ef7-c87b-426d-a8cc-aa4c2b38f77d","status":"Succeeded","startTime":"2021-06-15T01:54:39Z","endTime":"2021-06-15T01:56:12Z"}' + 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":"\"10007f0d-0000-3300-0000-60bc12a70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: cache-control: - no-cache content-length: - - '311' + - '1470' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:41 GMT + - Sun, 06 Jun 2021 00:11:33 GMT + etag: + - '"10007f0d-0000-3300-0000-60bc12a70000"' expires: - '-1' pragma: @@ -242,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '6' + - '11' status: code: 200 message: OK @@ -250,33 +212,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000ba78-0000-3300-0000-60c808bc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:38.2642813Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"10007f0d-0000-3300-0000-60bc12a70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: cache-control: - no-cache content-length: - - '1474' + - '1470' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:41 GMT + - Sun, 06 Jun 2021 00:11:48 GMT etag: - - '"0000ba78-0000-3300-0000-60c808bc0000"' + - '"10007f0d-0000-3300-0000-60bc12a70000"' expires: - '-1' pragma: @@ -292,7 +255,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -310,23 +273,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000ba78-0000-3300-0000-60c808bc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:38.2642813Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000a50d-0000-3300-0000-60bc12cb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1474' + - '1471' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:43 GMT + - Sun, 06 Jun 2021 00:12:03 GMT etag: - - '"0000ba78-0000-3300-0000-60c808bc0000"' + - '"1000a50d-0000-3300-0000-60bc12cb0000"' expires: - '-1' pragma: @@ -342,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '13' + - '9' status: code: 200 message: OK @@ -360,23 +324,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000ba78-0000-3300-0000-60c808bc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:38.2642813Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000a50d-0000-3300-0000-60bc12cb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1474' + - '1471' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:45 GMT + - Sun, 06 Jun 2021 00:12:03 GMT etag: - - '"0000ba78-0000-3300-0000-60c808bc0000"' + - '"1000a50d-0000-3300-0000-60bc12cb0000"' expires: - '-1' pragma: @@ -414,29 +379,30 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000c378-0000-3300-0000-60c808e20000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:49.6243633Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"3b719089-89f5-4344-8165-27560c58f59f","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"1000ad0d-0000-3300-0000-60bc12d60000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:06.4522253Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"2127fbc6-90e6-4cf5-8b62-96d285a258c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/29eb5585-56a9-4f4d-bf56-5c7252382478?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0717f51b-6966-4dbc-b496-100545b790d4?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1641' + - '1638' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:50 GMT + - Sun, 06 Jun 2021 00:12:05 GMT etag: - - '"0000c378-0000-3300-0000-60c808e20000"' + - '"1000ad0d-0000-3300-0000-60bc12d60000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/29eb5585-56a9-4f4d-bf56-5c7252382478?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0717f51b-6966-4dbc-b496-100545b790d4?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -446,110 +412,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '180' + - '125' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/29eb5585-56a9-4f4d-bf56-5c7252382478?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/29eb5585-56a9-4f4d-bf56-5c7252382478","name":"29eb5585-56a9-4f4d-bf56-5c7252382478","status":"Succeeded","startTime":"2021-06-15T01:56:50Z","endTime":"2021-06-15T01:56:51Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:57:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '7' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account identity assign - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"0000c478-0000-3300-0000-60c808e30000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:49.6243633Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"3b719089-89f5-4344-8165-27560c58f59f","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '1642' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:57:20 GMT - etag: - - '"0000c478-0000-3300-0000-60c808e30000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK - request: body: null headers: @@ -564,23 +432,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000c478-0000-3300-0000-60c808e30000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:49.6243633Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"3b719089-89f5-4344-8165-27560c58f59f","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"1000af0d-0000-3300-0000-60bc12d70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:06.4522253Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"2127fbc6-90e6-4cf5-8b62-96d285a258c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1642' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:57:22 GMT + - Sun, 06 Jun 2021 00:12:37 GMT etag: - - '"0000c478-0000-3300-0000-60c808e30000"' + - '"1000af0d-0000-3300-0000-60bc12d70000"' expires: - '-1' pragma: @@ -596,7 +465,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -618,29 +487,30 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000ef78-0000-3300-0000-60c809bb0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T02:00:26.2048431Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' + 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":"\"1000cb0d-0000-3300-0000-60bc12f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5a9d23e3-65d4-42dd-91a9-11b019e878f6?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5c32355c-905d-46c9-9ac1-e903ff17b285?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1528' + - '1525' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 02:00:26 GMT + - Sun, 06 Jun 2021 00:12:39 GMT etag: - - '"0000ef78-0000-3300-0000-60c809bb0000"' + - '"1000cb0d-0000-3300-0000-60bc12f70000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5a9d23e3-65d4-42dd-91a9-11b019e878f6?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5c32355c-905d-46c9-9ac1-e903ff17b285?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -650,9 +520,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '255' + - '104' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -670,121 +540,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"0000ef78-0000-3300-0000-60c809bb0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T02:00:26.2048431Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '1528' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 02:00:28 GMT - etag: - - '"0000ef78-0000-3300-0000-60c809bb0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '13' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account identity remove - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5a9d23e3-65d4-42dd-91a9-11b019e878f6?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5a9d23e3-65d4-42dd-91a9-11b019e878f6","name":"5a9d23e3-65d4-42dd-91a9-11b019e878f6","status":"Succeeded","startTime":"2021-06-15T02:00:27Z","endTime":"2021-06-15T02:00:33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 02:00:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '40' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account identity remove - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0000f078-0000-3300-0000-60c809c10000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:54:38.2642813Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T02:00:26.2048431Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:54:39.0408475Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' + 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":"\"1000cb0d-0000-3300-0000-60bc12f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1529' + - '1525' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 02:00:57 GMT + - Sun, 06 Jun 2021 00:12:39 GMT etag: - - '"0000f078-0000-3300-0000-60c809c10000"' + - '"1000cb0d-0000-3300-0000-60bc12f70000"' expires: - '-1' pragma: @@ -820,7 +593,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -832,7 +606,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 02:02:36 GMT + - Sun, 06 Jun 2021 00:12:42 GMT expires: - '-1' pragma: @@ -844,9 +618,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '84' + - '95' x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK 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 ba71acb64d3..c4f29f87398 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 @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00005a78-0000-3300-0000-60c807680000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:26.9421712Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:26.9421712Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:32.9377705Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"42d60acb-bda8-4276-be01-5b7402fdb7f9","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00565e-0000-3300-0000-60b999600000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40df3cae-7130-44af-a355-27814435904e?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1641' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:34 GMT + - Fri, 04 Jun 2021 03:09:19 GMT etag: - - '"00005a78-0000-3300-0000-60c807680000"' + - '"0d00565e-0000-3300-0000-60b999600000"' expires: - '-1' pragma: @@ -48,9 +49,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '256' + - '561' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -58,79 +59,34 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","name":"d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","status":"Creating","startTime":"2021-06-15T01:50:33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '5' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","name":"d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","status":"Creating","startTime":"2021-06-15T01:50:33Z"}' + 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":"\"0d006f5e-0000-3300-0000-60b999800000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '277' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:34 GMT + - Fri, 04 Jun 2021 03:10:05 GMT + etag: + - '"0d006f5e-0000-3300-0000-60b999800000"' expires: - '-1' pragma: @@ -146,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '6' + - '15' status: code: 200 message: OK @@ -154,31 +110,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","name":"d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","status":"Creating","startTime":"2021-06-15T01:50:33Z"}' + 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":"\"0d006f5e-0000-3300-0000-60b999800000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '277' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:05 GMT + - Fri, 04 Jun 2021 03:10:21 GMT + etag: + - '"0d006f5e-0000-3300-0000-60b999800000"' expires: - '-1' pragma: @@ -194,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '5' + - '11' status: code: 200 message: OK @@ -202,31 +161,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","name":"d9a8a4f7-a6bc-468e-88fe-b34c73d1a34a","status":"Succeeded","startTime":"2021-06-15T01:50:33Z","endTime":"2021-06-15T01:52:06Z"}' + 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":"\"0d00765e-0000-3300-0000-60b9999e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '311' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:35 GMT + - Fri, 04 Jun 2021 03:10:36 GMT + etag: + - '"0d00765e-0000-3300-0000-60b9999e0000"' expires: - '-1' pragma: @@ -242,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '7' + - '9' status: code: 200 message: OK @@ -250,33 +212,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account show Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --assign-identity --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00007578-0000-3300-0000-60c807c60000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:26.9421712Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:26.9421712Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:32.9377705Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"42d60acb-bda8-4276-be01-5b7402fdb7f9","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d00765e-0000-3300-0000-60b9999e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1642' + - '1639' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:36 GMT + - Fri, 04 Jun 2021 03:10:52 GMT etag: - - '"00007578-0000-3300-0000-60c807c60000"' + - '"0d00765e-0000-3300-0000-60b9999e0000"' expires: - '-1' pragma: @@ -292,7 +255,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -310,23 +273,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00007578-0000-3300-0000-60c807c60000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:26.9421712Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:26.9421712Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-15T01:50:32.9377705Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"42d60acb-bda8-4276-be01-5b7402fdb7f9","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0d009f5e-0000-3300-0000-60b999bc0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1642' + - '1640' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:37 GMT + - Fri, 04 Jun 2021 03:11:07 GMT etag: - - '"00007578-0000-3300-0000-60c807c60000"' + - '"0d009f5e-0000-3300-0000-60b999bc0000"' expires: - '-1' pragma: @@ -342,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '15' + - '9' status: code: 200 message: OK @@ -362,7 +326,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -374,7 +339,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:52:44 GMT + - Fri, 04 Jun 2021 03:11:10 GMT expires: - '-1' pragma: @@ -386,9 +351,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '81' + - '86' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK 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 3fb99553654..7fec3b2a5e3 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 @@ -13,12 +13,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-06-15T01:49:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-06-06T00:27:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:44 GMT + - Sun, 06 Jun 2021 00:27:09 GMT expires: - '-1' pragma: @@ -56,20 +59,23 @@ interactions: Content-Length: - '123' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"a10ee76a-91a7-466d-a565-4bb889a68bf7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7758b257-e09e-4c99-804d-5f3367a3b040\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -78,7 +84,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/897bc248-7dd4-48a5-b1b4-12ce9af98fbc?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7817497f-039d-46ab-a50d-54092dfe1008?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -86,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:52 GMT + - Sun, 06 Jun 2021 00:27:11 GMT expires: - '-1' pragma: @@ -99,7 +105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19eba2d9-ac12-4e09-91a3-4a5ac26bd9bc + - 8e253790-8b41-432e-8208-19e5682e601a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -109,7 +115,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -119,9 +125,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/897bc248-7dd4-48a5-b1b4-12ce9af98fbc?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7817497f-039d-46ab-a50d-54092dfe1008?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -133,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:55 GMT + - Sun, 06 Jun 2021 00:27:15 GMT expires: - '-1' pragma: @@ -150,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb78cc5e-4f9a-460b-a6ec-b4f904788250 + - 9f1255fb-358a-4345-850b-1a81e67065ec status: code: 200 message: OK @@ -158,7 +165,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -168,16 +175,17 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5b4b248c-337e-441b-8350-d13d456350e2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8d873f2f-6788-41e2-9212-3207d740000f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -190,9 +198,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:56 GMT + - Sun, 06 Jun 2021 00:27:15 GMT etag: - - W/"5b4b248c-337e-441b-8350-d13d456350e2" + - W/"8d873f2f-6788-41e2-9212-3207d740000f" expires: - '-1' pragma: @@ -209,7 +217,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed987bef-f3d9-44e8-a003-dd1e681f03b2 + - c5decb8e-2548-431d-af6f-5e7a0439872b status: code: 200 message: OK @@ -227,16 +235,19 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5b4b248c-337e-441b-8350-d13d456350e2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8d873f2f-6788-41e2-9212-3207d740000f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -249,9 +260,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:56 GMT + - Sun, 06 Jun 2021 00:27:14 GMT etag: - - W/"5b4b248c-337e-441b-8350-d13d456350e2" + - W/"8d873f2f-6788-41e2-9212-3207d740000f" expires: - '-1' pragma: @@ -268,16 +279,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e81cfabb-4add-44d9-9446-8c1d10dcd1f2 + - 22414b6a-65da-46b9-b2ae-a57d81aff27c status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", - "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -289,27 +299,30 @@ interactions: Connection: - keep-alive Content-Length: - - '588' + - '495' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"c315c16b-da53-4adb-90f9-56574ba7cd52\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"41735504-7f0d-41a7-8841-18c23fe07fed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"c315c16b-da53-4adb-90f9-56574ba7cd52\\\"\",\r\n + \ \"etag\": \"W/\\\"41735504-7f0d-41a7-8841-18c23fe07fed\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -318,7 +331,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa0cb403-e03d-4a2f-8e90-83a83acdf78d?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03dbfe2e-bc86-45f5-9488-ca42b43549ee?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -326,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:57 GMT + - Sun, 06 Jun 2021 00:27:15 GMT expires: - '-1' pragma: @@ -343,7 +356,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 714255c4-8b04-4945-b213-180cc951404d + - 4632c9f8-6421-413c-b185-1092236195c9 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -353,7 +366,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -363,9 +376,10 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa0cb403-e03d-4a2f-8e90-83a83acdf78d?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03dbfe2e-bc86-45f5-9488-ca42b43549ee?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -377,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:01 GMT + - Sun, 06 Jun 2021 00:27:18 GMT expires: - '-1' pragma: @@ -394,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 367036dc-0349-4c65-8bd6-e51ebbb909fe + - 5ced217c-4d87-4d1c-9971-8043388ad1f5 status: code: 200 message: OK @@ -402,7 +416,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -412,21 +426,22 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n + \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -441,9 +456,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:01 GMT + - Sun, 06 Jun 2021 00:27:18 GMT etag: - - W/"5961460a-d592-447f-935a-cc01d4887ec5" + - W/"5825f420-a002-4198-8c9d-450072942faa" expires: - '-1' pragma: @@ -460,7 +475,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e982bc91-53bd-49ff-b914-e89f41732b86 + - 34a32e08-6e3b-4f25-9fbf-3b0fad73b99e status: code: 200 message: OK @@ -478,21 +493,24 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n + \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -507,9 +525,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:02 GMT + - Sun, 06 Jun 2021 00:27:19 GMT etag: - - W/"5961460a-d592-447f-935a-cc01d4887ec5" + - W/"5825f420-a002-4198-8c9d-450072942faa" expires: - '-1' pragma: @@ -526,7 +544,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 240776a7-d145-427c-bf90-3be747b69d00 + - 04c42122-a8cd-4f17-a021-e7040c8a4e4f status: code: 200 message: OK @@ -534,11 +552,9 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}, {"name": "subnet", - "properties": {"addressPrefix": "10.0.1.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}, + {"properties": {"addressPrefix": "10.0.1.0/24"}, "name": "subnet"}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -550,33 +566,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1050' + - '904' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\r\n + \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet\",\r\n - \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\r\n + \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -585,7 +604,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/419f2830-2ff9-49a9-bd9d-c60620190972?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dce76f6-ac5e-4c2e-af6d-e3eb84053333?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -593,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:03 GMT + - Sun, 06 Jun 2021 00:27:20 GMT expires: - '-1' pragma: @@ -610,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1cc032bf-69a7-409e-91d6-e6c53d16e498 + - 7a102700-f3a1-4af0-b127-efc25780894b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -620,7 +639,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -630,9 +649,10 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/419f2830-2ff9-49a9-bd9d-c60620190972?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dce76f6-ac5e-4c2e-af6d-e3eb84053333?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -644,7 +664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:06 GMT + - Sun, 06 Jun 2021 00:27:24 GMT expires: - '-1' pragma: @@ -661,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd02dbf4-de15-4254-ab8d-fa70b3e6e7b7 + - a7de0dfa-9a85-4dd5-a49a-927db9bffed7 status: code: 200 message: OK @@ -669,7 +689,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -679,27 +699,28 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\r\n + \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet\",\r\n - \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\r\n + \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -714,9 +735,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:07 GMT + - Sun, 06 Jun 2021 00:27:24 GMT etag: - - W/"e6573df9-78b1-40ce-8d58-b7ed031b5281" + - W/"9b35ba30-c205-4ed8-98d0-5ff51d73fb40" expires: - '-1' pragma: @@ -733,13 +754,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69784105-b564-44fa-a72b-cd8d6d9ae342 + - 45985355-e1a9-4c87-84f2-f024de19daa8 status: code: 200 message: OK - request: - body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": - {"customSubDomainName": "csclitest000003"}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -750,31 +771,32 @@ interactions: Connection: - keep-alive Content-Length: - - '120' + - '137' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800e2fc-0000-0700-0000-60c807540000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:11.1683116Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"1000b510-0000-3300-0000-60bc166e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/b1c4cc1d-6016-4114-9d12-dd05dfa09d5b?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1612b761-6854-43e0-865e-0b574e664d4e?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1483' + - '2684' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:14 GMT + - Sun, 06 Jun 2021 00:27:26 GMT etag: - - '"5800e2fc-0000-0700-0000-60c807540000"' + - '"1000b510-0000-3300-0000-60bc166e0000"' expires: - '-1' pragma: @@ -786,9 +808,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1602' + - '1495' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -796,31 +818,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account network-rule list Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --custom-domain --yes + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/b1c4cc1d-6016-4114-9d12-dd05dfa09d5b?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/b1c4cc1d-6016-4114-9d12-dd05dfa09d5b","name":"b1c4cc1d-6016-4114-9d12-dd05dfa09d5b","status":"Succeeded","startTime":"2021-06-15T01:50:13Z","endTime":"2021-06-15T01:50:19Z"}' + 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":"\"1000bb10-0000-3300-0000-60bc16700000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '304' + - '2685' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:45 GMT + - Sun, 06 Jun 2021 00:27:57 GMT + etag: + - '"1000bb10-0000-3300-0000-60bc16700000"' expires: - '-1' pragma: @@ -836,7 +861,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '103' + - '11' status: code: 200 message: OK @@ -844,33 +869,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account create + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g --kind --sku -l --custom-domain --yes + - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580013fd-0000-0700-0000-60c8075b0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:11.1683116Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000bb10-0000-3300-0000-60bc16700000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1484' + - '2685' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:49 GMT + - Sun, 06 Jun 2021 00:27:57 GMT etag: - - '"580013fd-0000-0700-0000-60c8075b0000"' + - '"1000bb10-0000-3300-0000-60bc16700000"' expires: - '-1' pragma: @@ -890,6 +916,64 @@ interactions: status: code: 200 message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}], "virtualNetworkRules": []}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"1000ca10-0000-3300-0000-60bc168e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93777fe2-e1be-4d63-a4c0-40dadcb3af72?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '2781' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 06 Jun 2021 00:27:59 GMT + etag: + - '"1000ca10-0000-3300-0000-60bc168e0000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93777fe2-e1be-4d63-a4c0-40dadcb3af72?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '122' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -904,23 +988,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580013fd-0000-0700-0000-60c8075b0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:11.1683116Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000cb10-0000-3300-0000-60bc168f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1484' + - '2782' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:50 GMT + - Sun, 06 Jun 2021 00:28:30 GMT etag: - - '"580013fd-0000-0700-0000-60c8075b0000"' + - '"1000cb10-0000-3300-0000-60bc168f0000"' expires: - '-1' pragma: @@ -936,7 +1021,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -954,23 +1039,24 @@ interactions: ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580013fd-0000-0700-0000-60c8075b0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:11.1683116Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000cb10-0000-3300-0000-60bc168f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1484' + - '2782' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:51 GMT + - Sun, 06 Jun 2021 00:28:29 GMT etag: - - '"580013fd-0000-0700-0000-60c8075b0000"' + - '"1000cb10-0000-3300-0000-60bc168f0000"' expires: - '-1' pragma: @@ -986,13 +1072,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK - request: body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}], "virtualNetworkRules": []}}}' + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' headers: Accept: - application/json @@ -1003,35 +1089,36 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '149' Content-Type: - application/json ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800edfd-0000-0700-0000-60c8077e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:54.2258729Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000df10-0000-3300-0000-60bc16b00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/c95e3854-5303-4315-8ff6-b6903552141a?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/920b7fa5-9f02-4b39-ab71-032ebc3e6f45?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1581' + - '2807' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:54 GMT + - Sun, 06 Jun 2021 00:28:33 GMT etag: - - '"5800edfd-0000-0700-0000-60c8077e0000"' + - '"1000df10-0000-3300-0000-60bc16b00000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/c95e3854-5303-4315-8ff6-b6903552141a?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/920b7fa5-9f02-4b39-ab71-032ebc3e6f45?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1041,9 +1128,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '455' + - '122' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1051,31 +1138,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule list Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/c95e3854-5303-4315-8ff6-b6903552141a?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/c95e3854-5303-4315-8ff6-b6903552141a","name":"c95e3854-5303-4315-8ff6-b6903552141a","status":"Succeeded","startTime":"2021-06-15T01:50:54Z","endTime":"2021-06-15T01:50:55Z"}' + 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":"\"1000e010-0000-3300-0000-60bc16b10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '304' + - '2808' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:25 GMT + - Sun, 06 Jun 2021 00:29:02 GMT + etag: + - '"1000e010-0000-3300-0000-60bc16b10000"' expires: - '-1' pragma: @@ -1091,7 +1181,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '175' + - '12' status: code: 200 message: OK @@ -1099,7 +1189,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1107,25 +1197,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g --subnet User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800f6fd-0000-0700-0000-60c8077f0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:54.2258729Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000e010-0000-3300-0000-60bc16b10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1582' + - '2808' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:25 GMT + - Sun, 06 Jun 2021 00:29:03 GMT etag: - - '"5800f6fd-0000-0700-0000-60c8077f0000"' + - '"1000e010-0000-3300-0000-60bc16b10000"' expires: - '-1' pragma: @@ -1141,10 +1232,69 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '19' status: code: 200 message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", + "ignoreMissingVnetServiceEndpoint": true}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + Content-Length: + - '420' + Content-Type: + - application/json + ParameterSetName: + - -n -g --subnet + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"1000f710-0000-3300-0000-60bc16d00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3acd72b-38a3-42f2-9e4c-2ff3404b8671?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '3075' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 06 Jun 2021 00:29:07 GMT + etag: + - '"1000f710-0000-3300-0000-60bc16d00000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3acd72b-38a3-42f2-9e4c-2ff3404b8671?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '2853' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -1159,23 +1309,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800f6fd-0000-0700-0000-60c8077f0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:54.2258729Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000f810-0000-3300-0000-60bc16d50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1582' + - '3076' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:27 GMT + - Sun, 06 Jun 2021 00:29:38 GMT etag: - - '"5800f6fd-0000-0700-0000-60c8077f0000"' + - '"1000f810-0000-3300-0000-60bc16d50000"' expires: - '-1' pragma: @@ -1191,7 +1342,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '10' status: code: 200 message: OK @@ -1207,25 +1358,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800f6fd-0000-0700-0000-60c8077f0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:54.2258729Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000f810-0000-3300-0000-60bc16d50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1582' + - '3076' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:27 GMT + - Sun, 06 Jun 2021 00:29:38 GMT etag: - - '"5800f6fd-0000-0700-0000-60c8077f0000"' + - '"1000f810-0000-3300-0000-60bc16d50000"' expires: - '-1' pragma: @@ -1241,13 +1393,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '11' status: code: 200 message: OK - request: body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "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}]}}}' headers: Accept: - application/json @@ -1258,35 +1412,36 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '692' Content-Type: - application/json ParameterSetName: - - -n -g --ip-address + - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800befe-0000-0700-0000-60c807a00000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:28.2757673Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10001111-0000-3300-0000-60bc16f30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7c52e436-7eae-4312-b517-da9ea9121f97?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2d5eeef3-47ff-4496-9aa1-084dfa5a9d70?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1606' + - '3343' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:28 GMT + - Sun, 06 Jun 2021 00:29:40 GMT etag: - - '"5800befe-0000-0700-0000-60c807a00000"' + - '"10001111-0000-3300-0000-60bc16f30000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7c52e436-7eae-4312-b517-da9ea9121f97?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2d5eeef3-47ff-4496-9aa1-084dfa5a9d70?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1296,9 +1451,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '95' + - '757' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1306,31 +1461,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule list Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7c52e436-7eae-4312-b517-da9ea9121f97?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7c52e436-7eae-4312-b517-da9ea9121f97","name":"7c52e436-7eae-4312-b517-da9ea9121f97","status":"Succeeded","startTime":"2021-06-15T01:51:28Z","endTime":"2021-06-15T01:51:31Z"}' + 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":"\"10001211-0000-3300-0000-60bc16f40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '304' + - '3344' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:58 GMT + - Sun, 06 Jun 2021 00:30:11 GMT + etag: + - '"10001211-0000-3300-0000-60bc16f40000"' expires: - '-1' pragma: @@ -1346,7 +1504,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '105' + - '10' status: code: 200 message: OK @@ -1354,33 +1512,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule remove Connection: - keep-alive ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800cefe-0000-0700-0000-60c807a30000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:28.2757673Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10001211-0000-3300-0000-60bc16f40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1607' + - '3344' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:58 GMT + - Sun, 06 Jun 2021 00:30:11 GMT etag: - - '"5800cefe-0000-0700-0000-60c807a30000"' + - '"10001211-0000-3300-0000-60bc16f40000"' expires: - '-1' pragma: @@ -1396,10 +1555,70 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '11' status: code: 200 message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "100.0.0.0/24"}], "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}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + Content-Length: + - '668' + Content-Type: + - application/json + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"10002211-0000-3300-0000-60bc17140000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40488951-3f81-4ef3-9638-6208799ef62e?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '3321' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 06 Jun 2021 00:30:13 GMT + etag: + - '"10002211-0000-3300-0000-60bc17140000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40488951-3f81-4ef3-9638-6208799ef62e?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '1174' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -1414,23 +1633,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800cefe-0000-0700-0000-60c807a30000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:28.2757673Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10002511-0000-3300-0000-60bc17160000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1607' + - '3322' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:59 GMT + - Sun, 06 Jun 2021 00:30:44 GMT etag: - - '"5800cefe-0000-0700-0000-60c807a30000"' + - '"10002511-0000-3300-0000-60bc17160000"' expires: - '-1' pragma: @@ -1446,7 +1666,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '7' + - '9' status: code: 200 message: OK @@ -1458,29 +1678,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule remove Connection: - keep-alive ParameterSetName: - - -n -g --subnet + - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800cefe-0000-0700-0000-60c807a30000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:51:28.2757673Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10002511-0000-3300-0000-60bc17160000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1607' + - '3322' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:00 GMT + - Sun, 06 Jun 2021 00:30:44 GMT etag: - - '"5800cefe-0000-0700-0000-60c807a30000"' + - '"10002511-0000-3300-0000-60bc17160000"' expires: - '-1' pragma: @@ -1496,13 +1717,14 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12' + - '19' status: code: 200 message: OK - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], + "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}]}}}' headers: Accept: @@ -1510,39 +1732,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule remove Connection: - keep-alive Content-Length: - - '420' + - '643' Content-Type: - application/json ParameterSetName: - - -n -g --subnet + - -n -g --ip-address User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"58008bff-0000-0700-0000-60c807c10000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:01.5602194Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10005111-0000-3300-0000-60bc17350000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/a34d2fc8-202d-4f33-a015-6e36c7f76d38?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f61d7d99-3be9-43f3-8c1f-f8850b299d31?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1874' + - '3297' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:13 GMT + - Sun, 06 Jun 2021 00:30:47 GMT etag: - - '"58008bff-0000-0700-0000-60c807c10000"' + - '"10005111-0000-3300-0000-60bc17350000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/a34d2fc8-202d-4f33-a015-6e36c7f76d38?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f61d7d99-3be9-43f3-8c1f-f8850b299d31?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1552,9 +1775,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12052' + - '1102' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -1562,31 +1785,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule list Connection: - keep-alive ParameterSetName: - - -n -g --subnet + - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/a34d2fc8-202d-4f33-a015-6e36c7f76d38?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/a34d2fc8-202d-4f33-a015-6e36c7f76d38","name":"a34d2fc8-202d-4f33-a015-6e36c7f76d38","status":"Succeeded","startTime":"2021-06-15T01:52:13Z","endTime":"2021-06-15T01:52:14Z"}' + 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":"\"10005211-0000-3300-0000-60bc17370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '304' + - '3298' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:43 GMT + - Sun, 06 Jun 2021 00:31:17 GMT + etag: + - '"10005211-0000-3300-0000-60bc17370000"' expires: - '-1' pragma: @@ -1602,7 +1828,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '5' + - '10' status: code: 200 message: OK @@ -1610,33 +1836,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule remove Connection: - keep-alive ParameterSetName: - -n -g --subnet User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"5800ddff-0000-0700-0000-60c807ce0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:01.5602194Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10005211-0000-3300-0000-60bc17370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1875' + - '3298' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:44 GMT + - Sun, 06 Jun 2021 00:31:18 GMT etag: - - '"5800ddff-0000-0700-0000-60c807ce0000"' + - '"10005211-0000-3300-0000-60bc17370000"' expires: - '-1' pragma: @@ -1657,1032 +1884,64 @@ interactions: code: 200 message: OK - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule list - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5800ddff-0000-0700-0000-60c807ce0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:01.5602194Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1875' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:45 GMT - etag: - - '"5800ddff-0000-0700-0000-60c807ce0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5800ddff-0000-0700-0000-60c807ce0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:01.5602194Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1875' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:46 GMT - etag: - - '"5800ddff-0000-0700-0000-60c807ce0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "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}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - Content-Length: - - '692' - Content-Type: - - application/json - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900a200-0000-0700-0000-60c807f00000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:48.1624602Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7753411a-938f-4789-8254-0f0ccf04b663?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '2142' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:00 GMT - etag: - - '"5900a200-0000-0700-0000-60c807f00000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7753411a-938f-4789-8254-0f0ccf04b663?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '11466' - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7753411a-938f-4789-8254-0f0ccf04b663?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/7753411a-938f-4789-8254-0f0ccf04b663","name":"7753411a-938f-4789-8254-0f0ccf04b663","status":"Succeeded","startTime":"2021-06-15T01:52:59Z","endTime":"2021-06-15T01:53:00Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900f700-0000-0700-0000-60c807fc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:48.1624602Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2143' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:31 GMT - etag: - - '"5900f700-0000-0700-0000-60c807fc0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule list - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900f700-0000-0700-0000-60c807fc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:48.1624602Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2143' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:32 GMT - etag: - - '"5900f700-0000-0700-0000-60c807fc0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900f700-0000-0700-0000-60c807fc0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:52:48.1624602Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2143' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:33 GMT - etag: - - '"5900f700-0000-0700-0000-60c807fc0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "100.0.0.0/24"}], "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}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - Content-Length: - - '668' - Content-Type: - - application/json - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900a801-0000-0700-0000-60c8081e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:34.0232183Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/d12b6667-4a34-4add-83f7-bba3489a8411?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '2120' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:53:35 GMT - etag: - - '"5900a801-0000-0700-0000-60c8081e0000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/d12b6667-4a34-4add-83f7-bba3489a8411?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '1415' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/d12b6667-4a34-4add-83f7-bba3489a8411?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/d12b6667-4a34-4add-83f7-bba3489a8411","name":"d12b6667-4a34-4add-83f7-bba3489a8411","status":"Succeeded","startTime":"2021-06-15T01:53:35Z","endTime":"2021-06-15T01:53:36Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '103' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900b501-0000-0700-0000-60c808200000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:34.0232183Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2121' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:06 GMT - etag: - - '"5900b501-0000-0700-0000-60c808200000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule list - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900b501-0000-0700-0000-60c808200000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:34.0232183Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2121' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:07 GMT - etag: - - '"5900b501-0000-0700-0000-60c808200000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"5900b501-0000-0700-0000-60c808200000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:53:34.0232183Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2121' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:08 GMT - etag: - - '"5900b501-0000-0700-0000-60c808200000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], - "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}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - Content-Length: - - '643' - Content-Type: - - application/json - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59006d02-0000-0700-0000-60c808410000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:09.5712456Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/988e5c5b-9336-400b-8761-2260367b5efe?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '2096' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:10 GMT - etag: - - '"59006d02-0000-0700-0000-60c808410000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/988e5c5b-9336-400b-8761-2260367b5efe?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '717' - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/988e5c5b-9336-400b-8761-2260367b5efe?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/988e5c5b-9336-400b-8761-2260367b5efe","name":"988e5c5b-9336-400b-8761-2260367b5efe","status":"Succeeded","startTime":"2021-06-15T01:54:10Z","endTime":"2021-06-15T01:54:12Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '167' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59007e02-0000-0700-0000-60c808430000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:09.5712456Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2097' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:41 GMT - etag: - - '"59007e02-0000-0700-0000-60c808430000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule list - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59007e02-0000-0700-0000-60c808430000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:09.5712456Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2097' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:43 GMT - etag: - - '"59007e02-0000-0700-0000-60c808430000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '11' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59007e02-0000-0700-0000-60c808430000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:09.5712456Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '2097' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:44 GMT - etag: - - '"59007e02-0000-0700-0000-60c808430000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], - "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet", - "ignoreMissingVnetServiceEndpoint": true}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - Content-Length: - - '370' - Content-Type: - - application/json - ParameterSetName: - - -n -g --subnet - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59004303-0000-0700-0000-60c808640000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:44.6895958Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/cbd4f503-82ad-468f-8e18-81a5efa260ca?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '1827' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:54:45 GMT - etag: - - '"59004303-0000-0700-0000-60c808640000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/cbd4f503-82ad-468f-8e18-81a5efa260ca?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '892' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/cbd4f503-82ad-468f-8e18-81a5efa260ca?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/cbd4f503-82ad-468f-8e18-81a5efa260ca","name":"cbd4f503-82ad-468f-8e18-81a5efa260ca","status":"Succeeded","startTime":"2021-06-15T01:54:45Z","endTime":"2021-06-15T01:54:46Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:55:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '86' - status: - code: 200 - message: OK -- request: - body: null + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], + "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet", + "ignoreMissingVnetServiceEndpoint": true}]}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - cognitiveservices account network-rule remove Connection: - keep-alive + Content-Length: + - '370' + Content-Type: + - application/json ParameterSetName: - -n -g --subnet User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 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":"\"59004b03-0000-0700-0000-60c808660000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:44.6895958Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10007111-0000-3300-0000-60bc17570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/dcb9a6f2-12db-4ac0-92da-938d64ee7831?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1828' + - '3028' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:55:16 GMT + - Sun, 06 Jun 2021 00:31:20 GMT etag: - - '"59004b03-0000-0700-0000-60c808660000"' + - '"10007111-0000-3300-0000-60bc17570000"' expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/dcb9a6f2-12db-4ac0-92da-938d64ee7831?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '806' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2697,23 +1956,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59004b03-0000-0700-0000-60c808660000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:44.6895958Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10007211-0000-3300-0000-60bc17580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1828' + - '3029' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:55:17 GMT + - Sun, 06 Jun 2021 00:31:51 GMT etag: - - '"59004b03-0000-0700-0000-60c808660000"' + - '"10007211-0000-3300-0000-60bc17580000"' expires: - '-1' pragma: @@ -2729,7 +1989,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '10' status: code: 200 message: OK @@ -2747,23 +2007,24 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59004b03-0000-0700-0000-60c808660000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:54:44.6895958Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10007211-0000-3300-0000-60bc17580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1828' + - '3029' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:55:18 GMT + - Sun, 06 Jun 2021 00:31:50 GMT etag: - - '"59004b03-0000-0700-0000-60c808660000"' + - '"10007211-0000-3300-0000-60bc17580000"' expires: - '-1' pragma: @@ -2779,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '10' status: code: 200 message: OK @@ -2802,29 +2063,30 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59001204-0000-0700-0000-60c808870000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:55:19.1862293Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10009411-0000-3300-0000-60bc17780000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/6bc4afb7-e91d-4720-8f3d-cbf81f39bcfb?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/38b1572c-9815-4af2-b353-106f3a5b5057?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1560' + - '2761' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:55:30 GMT + - Sun, 06 Jun 2021 00:31:53 GMT etag: - - '"59001204-0000-0700-0000-60c808870000"' + - '"10009411-0000-3300-0000-60bc17780000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/6bc4afb7-e91d-4720-8f3d-cbf81f39bcfb?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/38b1572c-9815-4af2-b353-106f3a5b5057?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -2834,110 +2096,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11629' + - '1173' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/6bc4afb7-e91d-4720-8f3d-cbf81f39bcfb?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/6bc4afb7-e91d-4720-8f3d-cbf81f39bcfb","name":"6bc4afb7-e91d-4720-8f3d-cbf81f39bcfb","status":"Succeeded","startTime":"2021-06-15T01:55:30Z","endTime":"2021-06-15T01:55:33Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:56:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '107' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59005704-0000-0700-0000-60c808950000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:55:19.1862293Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1561' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:56:01 GMT - etag: - - '"59005704-0000-0700-0000-60c808950000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '9' - status: - code: 200 - message: OK - request: body: null headers: @@ -2952,23 +2116,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59005704-0000-0700-0000-60c808950000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:55:19.1862293Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10009511-0000-3300-0000-60bc17790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1561' + - '2762' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:03 GMT + - Sun, 06 Jun 2021 00:32:23 GMT etag: - - '"59005704-0000-0700-0000-60c808950000"' + - '"10009511-0000-3300-0000-60bc17790000"' expires: - '-1' pragma: @@ -2984,7 +2149,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '17' status: code: 200 message: OK @@ -3002,23 +2167,24 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59005704-0000-0700-0000-60c808950000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:55:19.1862293Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"10009511-0000-3300-0000-60bc17790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1561' + - '2762' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:04 GMT + - Sun, 06 Jun 2021 00:32:24 GMT etag: - - '"59005704-0000-0700-0000-60c808950000"' + - '"10009511-0000-3300-0000-60bc17790000"' expires: - '-1' pragma: @@ -3034,7 +2200,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -3057,29 +2223,30 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59000a05-0000-0700-0000-60c808b50000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:05.0891415Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000ac11-0000-3300-0000-60bc17990000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/485f5d78-6b81-40ca-9f43-167cac12ae84?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f07fa562-6143-4a89-9630-7ce004c5d158?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1560' + - '2761' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:06 GMT + - Sun, 06 Jun 2021 00:32:25 GMT etag: - - '"59000a05-0000-0700-0000-60c808b50000"' + - '"1000ac11-0000-3300-0000-60bc17990000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/485f5d78-6b81-40ca-9f43-167cac12ae84?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f07fa562-6143-4a89-9630-7ce004c5d158?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -3089,110 +2256,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '93' + - '108' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 202 message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/485f5d78-6b81-40ca-9f43-167cac12ae84?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/operationResults/485f5d78-6b81-40ca-9f43-167cac12ae84","name":"485f5d78-6b81-40ca-9f43-167cac12ae84","status":"Succeeded","startTime":"2021-06-15T01:56:05Z","endTime":"2021-06-15T01:56:06Z"}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:56:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '169' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - ParameterSetName: - - -n -g --subnet --vnet-name - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"59001205-0000-0700-0000-60c808b60000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:05.0891415Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1561' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:56:36 GMT - etag: - - '"59001205-0000-0700-0000-60c808b60000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '10' - status: - code: 200 - message: OK - request: body: null headers: @@ -3207,23 +2276,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"59001205-0000-0700-0000-60c808b60000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:11.1683116Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:56:05.0891415Z"},"location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:12.3515332Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"1000ae11-0000-3300-0000-60bc179a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '1561' + - '2762' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:56:37 GMT + - Sun, 06 Jun 2021 00:32:56 GMT etag: - - '"59001205-0000-0700-0000-60c808b60000"' + - '"1000ae11-0000-3300-0000-60bc179a0000"' expires: - '-1' pragma: @@ -3259,7 +2329,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -3271,7 +2342,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:56:44 GMT + - Sun, 06 Jun 2021 00:32:58 GMT expires: - '-1' pragma: @@ -3283,9 +2354,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '67' + - '273' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK 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 93493767a5b..365620beb90 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westus", "properties": - {"customSubDomainName": "csclitest000003"}}' + body: '{"kind": "TextAnalytics", "sku": {"name": "S0"}, "location": "westus", + "properties": {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -12,31 +12,31 @@ interactions: Connection: - keep-alive Content-Length: - - '128' + - '129' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580062fc-0000-0700-0000-60c8073e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:48.720839Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:48.720839Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:49:49.9556279Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, - TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + 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":"\"880085a8-0000-0700-0000-60b97d3e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '1339' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:51 GMT + - Fri, 04 Jun 2021 01:09:20 GMT etag: - - '"580062fc-0000-0700-0000-60c8073e0000"' + - '"880085a8-0000-0700-0000-60b97d3e0000"' expires: - '-1' pragma: @@ -48,9 +48,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1483' + - '6340' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -68,9 +68,9 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2021-04-30 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources/account","name":"account","type":"Microsoft.CognitiveServices/accounts/privateLinkResources","properties":{"groupId":"account","requiredMembers":["default"],"requiredZoneNames":["privatelink.cognitiveservices.azure.com"]}}]}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:52 GMT + - Fri, 04 Jun 2021 01:09:20 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '18' status: code: 200 message: OK @@ -117,20 +117,23 @@ interactions: Content-Length: - '123' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"3414025e-5ed7-40c7-ac7a-ac2aef177c82\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f697892d-62c6-44c9-8744-5cc86a7a81ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -139,7 +142,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d1011d8-e7c7-4f00-ba5a-841827bd86f9?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d5e01bd-e2d9-418d-be46-2c4ec601d3b6?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -147,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:00 GMT + - Fri, 04 Jun 2021 01:09:22 GMT expires: - '-1' pragma: @@ -160,7 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24ca0ff2-7ed6-4152-a3c7-ef3afe90ff0c + - dc62c0be-31f1-4221-861c-2ee3ea122ae5 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -170,7 +173,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -180,9 +183,10 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7d1011d8-e7c7-4f00-ba5a-841827bd86f9?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d5e01bd-e2d9-418d-be46-2c4ec601d3b6?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -194,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:03 GMT + - Fri, 04 Jun 2021 01:09:25 GMT expires: - '-1' pragma: @@ -211,7 +215,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ce40384-66d6-4a24-85a6-991f27b123c2 + - 36887d83-d373-497c-9beb-69048658cec0 status: code: 200 message: OK @@ -219,7 +223,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -229,16 +233,17 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"55d4f3d2-2b34-416d-9522-5aea54582105\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ab2989b-547c-4259-ab56-23f244fc344a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -251,9 +256,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:03 GMT + - Fri, 04 Jun 2021 01:09:25 GMT etag: - - W/"55d4f3d2-2b34-416d-9522-5aea54582105" + - W/"7ab2989b-547c-4259-ab56-23f244fc344a" expires: - '-1' pragma: @@ -270,7 +275,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bd215b0-5569-4b66-ae17-077cf1e931cc + - 00f36a0d-f12d-4c4d-b13d-ad9d2e8942a8 status: code: 200 message: OK @@ -288,16 +293,19 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"55d4f3d2-2b34-416d-9522-5aea54582105\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ab2989b-547c-4259-ab56-23f244fc344a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -310,9 +318,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:05 GMT + - Fri, 04 Jun 2021 01:09:25 GMT etag: - - W/"55d4f3d2-2b34-416d-9522-5aea54582105" + - W/"7ab2989b-547c-4259-ab56-23f244fc344a" expires: - '-1' pragma: @@ -329,16 +337,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 389c2d4e-d5e3-4a14-93fa-b00220752b10 + - e7ec53ce-c65c-4415-95b1-81d429965d44 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", - "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -350,27 +357,30 @@ interactions: Connection: - keep-alive Content-Length: - - '588' + - '495' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"b35a3c70-20ac-45cf-8a29-bfcaea5d5a2d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eeddef3c-36d1-464f-9d14-55bce79a635f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"b35a3c70-20ac-45cf-8a29-bfcaea5d5a2d\\\"\",\r\n + \ \"etag\": \"W/\\\"eeddef3c-36d1-464f-9d14-55bce79a635f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -379,7 +389,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ff8559a-5917-4806-9505-499d034ea154?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65c9155f-0576-49c4-bd95-4f1598986b07?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -387,7 +397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:07 GMT + - Fri, 04 Jun 2021 01:09:27 GMT expires: - '-1' pragma: @@ -404,7 +414,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11c48c71-1eaf-46be-aa12-b87c7dd8becf + - 388a4260-2901-4ed1-9820-1c2679b650b3 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -414,7 +424,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -424,9 +434,10 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ff8559a-5917-4806-9505-499d034ea154?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65c9155f-0576-49c4-bd95-4f1598986b07?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -438,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:10 GMT + - Fri, 04 Jun 2021 01:09:29 GMT expires: - '-1' pragma: @@ -455,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce8de120-e724-4a0b-b72b-367ad8dd908a + - f178e5b5-f242-475f-97d1-0bd3b9e58276 status: code: 200 message: OK @@ -463,7 +474,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -473,21 +484,22 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\r\n + \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -502,9 +514,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:11 GMT + - Fri, 04 Jun 2021 01:09:29 GMT etag: - - W/"ceaae48d-a40f-47ca-b1cc-1612f10e253a" + - W/"7ecd54c6-f62a-4230-8d06-f3944fd7b11e" expires: - '-1' pragma: @@ -521,7 +533,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d41a2fdb-5066-4eb8-a7e1-776f2b2954ab + - fbca12a9-f64c-4243-a333-ad39639233f6 status: code: 200 message: OK @@ -539,25 +551,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580062fc-0000-0700-0000-60c8073e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:48.720839Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:48.720839Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:49:49.9556279Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, - TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + 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":"\"880085a8-0000-0700-0000-60b97d3e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2206' + - '1339' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:11 GMT + - Fri, 04 Jun 2021 01:09:29 GMT etag: - - '"580062fc-0000-0700-0000-60c8073e0000"' + - '"880085a8-0000-0700-0000-60b97d3e0000"' expires: - '-1' pragma: @@ -591,13 +603,16 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -610,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:13 GMT + - Fri, 04 Jun 2021 01:09:30 GMT etag: - - W/"ceaae48d-a40f-47ca-b1cc-1612f10e253a" + - W/"7ecd54c6-f62a-4230-8d06-f3944fd7b11e" expires: - '-1' pragma: @@ -629,15 +644,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c40d239-e6e7-4047-b059-6c0fe4fb9ec9 + - fef40098-768e-4d77-a369-e8464e71918b status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}' headers: Accept: - application/json @@ -648,26 +662,29 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '409' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"38a6148a-c48c-420f-a8bb-2ea2aa15fa8c\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"99d7b076-d28a-4fad-99ea-185c53398cc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/df4d3206-b59f-4648-afa2-bf1712462452?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c653a8b6-696b-4b03-8b86-027c345408f4?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -675,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:13 GMT + - Fri, 04 Jun 2021 01:09:30 GMT expires: - '-1' pragma: @@ -692,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6af11255-ab35-444d-9126-2703d5270c0c + - e241883a-e2d6-42ff-b989-b4d82b754203 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -702,7 +719,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -712,9 +729,10 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/df4d3206-b59f-4648-afa2-bf1712462452?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c653a8b6-696b-4b03-8b86-027c345408f4?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -726,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:16 GMT + - Fri, 04 Jun 2021 01:09:34 GMT expires: - '-1' pragma: @@ -743,7 +761,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 302851f3-c8c3-4844-b998-eff6ca66a0da + - e018cf5d-02e5-4e80-a5a9-f43f3a61e5c2 status: code: 200 message: OK @@ -751,7 +769,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -761,13 +779,14 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"04c20047-1789-4dee-b94a-b53c1954747f\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"3db97944-93c9-40b8-8c01-969ac981fabc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -780,9 +799,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:19 GMT + - Fri, 04 Jun 2021 01:09:34 GMT etag: - - W/"04c20047-1789-4dee-b94a-b53c1954747f" + - W/"3db97944-93c9-40b8-8c01-969ac981fabc" expires: - '-1' pragma: @@ -799,16 +818,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a7a821c-51f3-4cb2-a1fb-24ed1942ae9e + - 5a01d7dc-60e0-45b1-9af4-e338d9277334 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": - "Enabled"}}, "privateLinkServiceConnections": [{"name": "pecs_cli_test_000002", - "properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", - "groupIds": ["account"]}}]}}' + body: '{"location": "westus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default"}, + "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", + "groupIds": ["account"]}, "name": "pecs_cli_test_000002"}]}}' headers: Accept: - application/json @@ -819,26 +836,29 @@ interactions: Connection: - keep-alive Content-Length: - - '730' + - '621' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"ca5908e4-b77f-468c-b5c3-7b23cc1cdcc6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c0b7fa4f-88db-4cf8-89fc-7509aa1bb5c2\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"09f2754d-b38a-435a-ac32-9bcb02c2016c\",\r\n \"privateLinkServiceConnections\": + \"0c0696c7-0662-48ef-83ec-9e02f77d0aa4\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"ca5908e4-b77f-468c-b5c3-7b23cc1cdcc6\\\"\",\r\n + \ \"etag\": \"W/\\\"c0b7fa4f-88db-4cf8-89fc-7509aa1bb5c2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -847,13 +867,13 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.ce579a60-deb2-4637-8249-6c9e4a56dce6\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.e811d1f1-4017-494b-9496-ec1ab9f342ce\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -861,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:28 GMT + - Fri, 04 Jun 2021 01:09:37 GMT expires: - '-1' pragma: @@ -874,9 +894,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c02a3b65-6004-4b0a-a85e-d7b25d6ecef1 + - 5039bf12-e645-4260-a0d6-7d988ea6951d x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -884,7 +904,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -895,9 +915,10 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -909,7 +930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:39 GMT + - Fri, 04 Jun 2021 01:09:47 GMT expires: - '-1' pragma: @@ -926,7 +947,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6173c3b8-3b69-4122-9897-95d5781d53a3 + - c3b9ab5e-ef3e-43a8-a16a-0bb8123bb721 status: code: 200 message: OK @@ -934,7 +955,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -945,9 +966,10 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -959,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:50 GMT + - Fri, 04 Jun 2021 01:09:57 GMT expires: - '-1' pragma: @@ -976,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30bb1d3e-afe5-4cb2-9d91-4d27839f95f2 + - fb67529c-61a6-49fc-8ac3-e5bac2040176 status: code: 200 message: OK @@ -984,7 +1006,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -995,9 +1017,10 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1009,7 +1032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:11 GMT + - Fri, 04 Jun 2021 01:10:18 GMT expires: - '-1' pragma: @@ -1026,7 +1049,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2357b53f-4ded-4f6d-8ec3-d954aba41ae9 + - 2ecf97b8-0923-4811-a1f9-3c24285f80cb status: code: 200 message: OK @@ -1034,7 +1057,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1045,19 +1068,20 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"f46a86d4-50ab-4cf5-9114-3565e27ef360\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5d70b7af-f6e1-478b-ad0e-69a9180589ba\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"09f2754d-b38a-435a-ac32-9bcb02c2016c\",\r\n \"privateLinkServiceConnections\": + \"0c0696c7-0662-48ef-83ec-9e02f77d0aa4\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"f46a86d4-50ab-4cf5-9114-3565e27ef360\\\"\",\r\n + \ \"etag\": \"W/\\\"5d70b7af-f6e1-478b-ad0e-69a9180589ba\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1066,7 +1090,7 @@ interactions: \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.ce579a60-deb2-4637-8249-6c9e4a56dce6\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.e811d1f1-4017-494b-9496-ec1ab9f342ce\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"csclitest000003.cognitiveservices.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" @@ -1078,9 +1102,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:12 GMT + - Fri, 04 Jun 2021 01:10:18 GMT etag: - - W/"f46a86d4-50ab-4cf5-9114-3565e27ef360" + - W/"5d70b7af-f6e1-478b-ad0e-69a9180589ba" expires: - '-1' pragma: @@ -1097,7 +1121,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f029192-80e8-4172-8e67-119c7e971da7 + - 73a5a4ec-64bd-4245-971e-13e2fa8287a6 status: code: 200 message: OK @@ -1115,25 +1139,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"580010fe-0000-0700-0000-60c807830000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:48.720839Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:48.720839Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:49:49.9556279Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.09f2754d-b38a-435a-ac32-9bcb02c2016c","name":"cs_cli_test_000002/pecs_cli_test_000002.09f2754d-b38a-435a-ac32-9bcb02c2016c","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":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, - TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + 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":"\"8800aca9-0000-0700-0000-60b97d5e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","name":"cs_cli_test_000002/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","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":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3039' + - '2172' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:15 GMT + - Fri, 04 Jun 2021 01:10:19 GMT etag: - - '"580010fe-0000-0700-0000-60c807830000"' + - '"8800aca9-0000-0700-0000-60b97d5e0000"' expires: - '-1' pragma: @@ -1149,7 +1173,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '16' + - '19' status: code: 200 message: OK @@ -1167,12 +1191,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.09f2754d-b38a-435a-ac32-9bcb02c2016c?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.09f2754d-b38a-435a-ac32-9bcb02c2016c","name":"cs_cli_test_000002/pecs_cli_test_000002.09f2754d-b38a-435a-ac32-9bcb02c2016c","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0400db06-0000-0700-0000-60c807840000\"","location":"westus","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","name":"cs_cli_test_000002/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0800ca95-0000-0700-0000-60b97d5f0000\"","location":"westus","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1181,9 +1205,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:15 GMT + - Fri, 04 Jun 2021 01:10:20 GMT etag: - - '"0400db06-0000-0700-0000-60c807840000"' + - '"0800ca95-0000-0700-0000-60b97d5f0000"' expires: - '-1' pragma: @@ -1199,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '128' status: code: 200 message: OK @@ -1219,9 +1243,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: '' @@ -1229,17 +1256,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dee7659-af6f-4742-9405-ed37649fa3f8?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 15 Jun 2021 01:51:17 GMT + - Fri, 04 Jun 2021 01:10:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/9dee7659-af6f-4742-9405-ed37649fa3f8?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 pragma: - no-cache server: @@ -1250,9 +1277,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9556fed0-2878-403d-bd93-1bc54aaec7aa + - b7c49ff1-dd8e-4b99-8c5b-61021f044ff0 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1260,7 +1287,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1270,9 +1297,10 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dee7659-af6f-4742-9405-ed37649fa3f8?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1284,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:28 GMT + - Fri, 04 Jun 2021 01:10:30 GMT expires: - '-1' pragma: @@ -1301,7 +1329,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3149636-0e33-4a6f-b8ba-733e8748633e + - 91148d65-606e-4b4c-ae14-ba4fd8433eaf status: code: 200 message: OK @@ -1309,7 +1337,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1319,9 +1347,10 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9dee7659-af6f-4742-9405-ed37649fa3f8?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1333,7 +1362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:38 GMT + - Fri, 04 Jun 2021 01:10:40 GMT expires: - '-1' pragma: @@ -1350,7 +1379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d542fdc-3ab4-4035-bf2b-7434ea6ecf30 + - ad65994b-517d-4da2-8d28-6bc3cdb42a57 status: code: 200 message: OK @@ -1370,7 +1399,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -1382,7 +1412,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:51:46 GMT + - Fri, 04 Jun 2021 01:10:44 GMT expires: - '-1' pragma: @@ -1394,7 +1424,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '68' + - '72' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 6b767e29454..55cf1c1be27 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "centraluseuap", + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", "properties": {"customSubDomainName": "csclitest000003"}}' headers: Accept: @@ -12,33 +12,32 @@ interactions: Connection: - keep-alive Content-Length: - - '135' + - '137' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00005778-0000-3300-0000-60c807620000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:25.0178321Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:25.0178321Z"},"location":"centraluseuap","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:26.374068Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://csclitest000003.cognitiveservices.azure.com/","qnAMaker":"https://csclitest000003.cognitiveservices.azure.com/","turing":"https://csclitest000003.cognitiveservices.azure.com/","questionAnswering":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"1000cc0f-0000-3300-0000-60bc15380000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d7584587-d2fe-437c-8797-5a4f2a9ec3d6?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7ed2ac4f-0f22-442d-b414-1ae71e99bfd5?api-version=2017-04-18 cache-control: - no-cache content-length: - - '3016' + - '2684' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:28 GMT + - Sun, 06 Jun 2021 00:22:18 GMT etag: - - '"00005778-0000-3300-0000-60c807620000"' + - '"1000cc0f-0000-3300-0000-60bc15380000"' expires: - '-1' pragma: @@ -50,160 +49,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1518' + - '1644' x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d7584587-d2fe-437c-8797-5a4f2a9ec3d6?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d7584587-d2fe-437c-8797-5a4f2a9ec3d6","name":"d7584587-d2fe-437c-8797-5a4f2a9ec3d6","status":"Creating","startTime":"2021-06-15T01:50:27Z"}' - headers: - cache-control: - - no-cache - content-length: - - '277' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:50:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '7' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d7584587-d2fe-437c-8797-5a4f2a9ec3d6?api-version=2017-04-18 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d7584587-d2fe-437c-8797-5a4f2a9ec3d6","name":"d7584587-d2fe-437c-8797-5a4f2a9ec3d6","status":"Succeeded","startTime":"2021-06-15T01:50:27Z","endTime":"2021-06-15T01:51:03Z"}' - headers: - cache-control: - - no-cache - content-length: - - '311' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '6' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account create - Connection: - - keep-alive - ParameterSetName: - - -n -g --kind --sku -l --custom-domain - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"00006a78-0000-3300-0000-60c807870000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:25.0178321Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:25.0178321Z"},"location":"centraluseuap","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:26.374068Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://csclitest000003.cognitiveservices.azure.com/","qnAMaker":"https://csclitest000003.cognitiveservices.azure.com/","turing":"https://csclitest000003.cognitiveservices.azure.com/","questionAnswering":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '3017' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:28 GMT - etag: - - '"00006a78-0000-3300-0000-60c807870000"' - expires: - - '-1' - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '8' - status: - code: 200 - message: OK - request: body: null headers: @@ -218,9 +69,9 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2021-04-30 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources/account","name":"account","type":"Microsoft.CognitiveServices/accounts/privateLinkResources","properties":{"groupId":"account","requiredMembers":["default"],"requiredZoneNames":["privatelink.cognitiveservices.azure.com"]}}]}' @@ -232,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:30 GMT + - Sun, 06 Jun 2021 00:22:47 GMT expires: - '-1' pragma: @@ -248,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '19' status: code: 200 message: OK @@ -267,20 +118,23 @@ interactions: Content-Length: - '130' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"a714b1c2-d52a-4c9c-b931-73dfe890e746\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6e73a9e3-52d7-45bc-be15-04f340329fbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -289,7 +143,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0b61305d-426e-4e7e-87f8-474f196d3af7?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/23bc46ee-272f-4415-ae53-76c83b3fc544?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -297,7 +151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:35 GMT + - Sun, 06 Jun 2021 00:22:49 GMT expires: - '-1' pragma: @@ -310,9 +164,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b355b89-f21b-4bc3-9dff-a0a2d0d5346a + - ec580116-6a4c-42d0-b026-00a80bd2608a x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -320,56 +174,7 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name -l - User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0b61305d-426e-4e7e-87f8-474f196d3af7?api-version=2021-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 06fa16aa-822f-4366-a985-39aeb14723d1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -379,9 +184,10 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/0b61305d-426e-4e7e-87f8-474f196d3af7?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/23bc46ee-272f-4415-ae53-76c83b3fc544?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -393,7 +199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:49 GMT + - Sun, 06 Jun 2021 00:22:53 GMT expires: - '-1' pragma: @@ -410,7 +216,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0021d246-b31a-46c4-9930-05b40ff7e5f0 + - 5f764371-dd69-4d58-b98e-d368ba7d6427 status: code: 200 message: OK @@ -418,7 +224,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -428,16 +234,17 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"2df4e406-6766-421a-8447-8c68360466f1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ad7ae35f-5e75-4357-abd6-63dcff6459d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -450,9 +257,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:50 GMT + - Sun, 06 Jun 2021 00:22:53 GMT etag: - - W/"2df4e406-6766-421a-8447-8c68360466f1" + - W/"ad7ae35f-5e75-4357-abd6-63dcff6459d8" expires: - '-1' pragma: @@ -469,7 +276,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 278b7c9f-36e8-4a6f-8fdf-a2b86e2e0f5d + - 5858352c-0cb7-463c-8ae0-a92b675485e6 status: code: 200 message: OK @@ -487,16 +294,19 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"2df4e406-6766-421a-8447-8c68360466f1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ad7ae35f-5e75-4357-abd6-63dcff6459d8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -509,9 +319,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:51 GMT + - Sun, 06 Jun 2021 00:22:53 GMT etag: - - W/"2df4e406-6766-421a-8447-8c68360466f1" + - W/"ad7ae35f-5e75-4357-abd6-63dcff6459d8" expires: - '-1' pragma: @@ -528,16 +338,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a74d2597-da85-46f5-9c35-ef3805c04161 + - f69f5b71-c065-44ea-9bc3-833bfce5a1b6 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "centraluseuap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", - "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": + {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -549,27 +358,30 @@ interactions: Connection: - keep-alive Content-Length: - - '595' + - '502' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"b2d59cad-74e7-4b0a-8cc5-c031ca33069f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2c7662cc-c428-44fd-99f8-61425448664c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"b2d59cad-74e7-4b0a-8cc5-c031ca33069f\\\"\",\r\n + \ \"etag\": \"W/\\\"2c7662cc-c428-44fd-99f8-61425448664c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -578,7 +390,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bda905e3-2de3-4473-bf0d-c086c07bd965?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/22a489fd-c7bf-4955-a91b-deeaddafc339?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -586,7 +398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:51:53 GMT + - Sun, 06 Jun 2021 00:22:54 GMT expires: - '-1' pragma: @@ -603,58 +415,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49ef9958-3b5a-43c5-915f-07094625a24d + - 18851b0e-e925-4de8-a102-2802cbc05004 x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vnet-name --address-prefixes - User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bda905e3-2de3-4473-bf0d-c086c07bd965?api-version=2021-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:51:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 2ff04f2f-5bdc-42c9-9282-0b67e9b3f794 + - '1199' status: code: 200 message: OK @@ -662,7 +425,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -672,9 +435,10 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/bda905e3-2de3-4473-bf0d-c086c07bd965?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/22a489fd-c7bf-4955-a91b-deeaddafc339?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -686,7 +450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:06 GMT + - Sun, 06 Jun 2021 00:22:58 GMT expires: - '-1' pragma: @@ -703,7 +467,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2824daa6-0c52-4a31-a4bd-00e9426aebfe + - 838bb7a8-f5a5-452a-b941-522b116183e1 status: code: 200 message: OK @@ -711,7 +475,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -721,21 +485,22 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\r\n + \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -750,9 +515,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:06 GMT + - Sun, 06 Jun 2021 00:22:58 GMT etag: - - W/"000617ca-b541-4b01-9f75-4b6b6b3001b5" + - W/"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff" expires: - '-1' pragma: @@ -769,7 +534,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b07c2ec-0ce9-4d22-9904-8e4203a9db58 + - f3d03110-fc43-4e3e-a8e4-b88d9108830f status: code: 200 message: OK @@ -787,25 +552,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00006a78-0000-3300-0000-60c807870000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:25.0178321Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:25.0178321Z"},"location":"centraluseuap","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:26.374068Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://csclitest000003.cognitiveservices.azure.com/","qnAMaker":"https://csclitest000003.cognitiveservices.azure.com/","turing":"https://csclitest000003.cognitiveservices.azure.com/","questionAnswering":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000cd0f-0000-3300-0000-60bc153a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3017' + - '2685' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:08 GMT + - Sun, 06 Jun 2021 00:22:58 GMT etag: - - '"00006a78-0000-3300-0000-60c807870000"' + - '"1000cd0f-0000-3300-0000-60bc153a0000"' expires: - '-1' pragma: @@ -821,7 +585,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '11' status: code: 200 message: OK @@ -839,13 +603,16 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -858,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:09 GMT + - Sun, 06 Jun 2021 00:22:59 GMT etag: - - W/"000617ca-b541-4b01-9f75-4b6b6b3001b5" + - W/"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff" expires: - '-1' pragma: @@ -877,15 +644,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11364f95-d37b-4bba-9d0b-f2527983b05d + - 5746ba72-6740-4f00-82de-8cdd9e1bd2f6 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": - {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' + "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}' headers: Accept: - application/json @@ -896,26 +662,29 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '409' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"e10c16e9-f1c8-48b8-bf3c-f7cf05e9b1a8\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"9ecf79af-a09f-4361-9208-8b7030272463\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/c7254eb5-10be-42ce-b73c-893fe5e256e7?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df185af5-c16a-43b2-a613-b3db1172c9a3?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -923,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:11 GMT + - Sun, 06 Jun 2021 00:23:00 GMT expires: - '-1' pragma: @@ -940,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c55f70f5-0fd7-4103-9a6b-502f6cfded89 + - da3eafd2-9a32-4d6a-883e-a4891d5a1e17 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -950,7 +719,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -960,9 +729,10 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/c7254eb5-10be-42ce-b73c-893fe5e256e7?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df185af5-c16a-43b2-a613-b3db1172c9a3?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -974,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:14 GMT + - Sun, 06 Jun 2021 00:23:04 GMT expires: - '-1' pragma: @@ -991,7 +761,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 28aa932d-c0ca-4e2d-ba1a-867c978621e9 + - e84ac3ce-6b29-45a7-a414-d5a4591d7948 status: code: 200 message: OK @@ -999,7 +769,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1009,13 +779,14 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"58ea2fa0-de19-44e9-a946-5112c3c9f801\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"d3e75308-eebb-4a25-aa87-7edd2f4750b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1028,9 +799,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:14 GMT + - Sun, 06 Jun 2021 00:23:04 GMT etag: - - W/"58ea2fa0-de19-44e9-a946-5112c3c9f801" + - W/"d3e75308-eebb-4a25-aa87-7edd2f4750b4" expires: - '-1' pragma: @@ -1047,16 +818,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b16b7e15-4ec4-4750-b8b4-4286edb82395 + - eeb0bb2a-cf79-46e8-bfd8-dc12c478fb31 status: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": - "Enabled"}}, "privateLinkServiceConnections": [{"name": "pecs_cli_test_000002", - "properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", - "groupIds": ["account"]}}]}}' + body: '{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default"}, + "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", + "groupIds": ["account"]}, "name": "pecs_cli_test_000002"}]}}' headers: Accept: - application/json @@ -1067,26 +836,29 @@ interactions: Connection: - keep-alive Content-Length: - - '737' + - '628' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"171e1a4b-5eb8-4bbd-8812-c567edd3da94\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"748de76a-83ab-41f0-8967-6b5e796771aa\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"d7095ae5-e995-4b8a-b561-5b7073f2ddf3\",\r\n \"privateLinkServiceConnections\": + \"bb7c0936-2b8e-45c5-a279-0246eab43d08\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"171e1a4b-5eb8-4bbd-8812-c567edd3da94\\\"\",\r\n + \ \"etag\": \"W/\\\"748de76a-83ab-41f0-8967-6b5e796771aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1095,13 +867,13 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.072be442-0262-490d-a279-f278dbc1fb85\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.bbdb5ce2-69a3-45e6-982e-262a3168464f\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/21c07bce-63bc-4d27-ba8c-8e0feac49434?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1109,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:23 GMT + - Sun, 06 Jun 2021 00:23:09 GMT expires: - '-1' pragma: @@ -1122,9 +894,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce1e5b4b-86ca-4896-bb05-ac532d7f3c74 + - 7afea48b-26e3-48fe-8143-d36c481e02c2 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1132,57 +904,7 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network private-endpoint create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name - -l - User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/21c07bce-63bc-4d27-ba8c-8e0feac49434?api-version=2021-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 15 Jun 2021 01:52:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 34b609e7-03d0-4be9-b356-8872caf1d451 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1193,9 +915,10 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/21c07bce-63bc-4d27-ba8c-8e0feac49434?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1207,7 +930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:52:44 GMT + - Sun, 06 Jun 2021 00:23:19 GMT expires: - '-1' pragma: @@ -1224,7 +947,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fdd4721e-86d3-4319-8769-cb313976639b + - 96ef37bd-3b96-4e4b-ab42-fc6cc270c0d9 status: code: 200 message: OK @@ -1232,7 +955,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1243,9 +966,10 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/21c07bce-63bc-4d27-ba8c-8e0feac49434?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1257,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:04 GMT + - Sun, 06 Jun 2021 00:23:39 GMT expires: - '-1' pragma: @@ -1274,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 721afa2a-8c6e-44f1-a25a-92b729d70eaf + - a48dea04-f809-4269-ace6-ea095098ab44 status: code: 200 message: OK @@ -1282,7 +1006,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1293,19 +1017,20 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"890c6a98-b04a-4259-9172-f12cce4538fa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1cab04e3-4cb4-4cb1-a497-efc91fb29db8\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"d7095ae5-e995-4b8a-b561-5b7073f2ddf3\",\r\n \"privateLinkServiceConnections\": + \"bb7c0936-2b8e-45c5-a279-0246eab43d08\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"890c6a98-b04a-4259-9172-f12cce4538fa\\\"\",\r\n + \ \"etag\": \"W/\\\"1cab04e3-4cb4-4cb1-a497-efc91fb29db8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1314,7 +1039,7 @@ interactions: \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.072be442-0262-490d-a279-f278dbc1fb85\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.bbdb5ce2-69a3-45e6-982e-262a3168464f\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"csclitest000003.cognitiveservices.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" @@ -1326,9 +1051,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:04 GMT + - Sun, 06 Jun 2021 00:23:39 GMT etag: - - W/"890c6a98-b04a-4259-9172-f12cce4538fa" + - W/"1cab04e3-4cb4-4cb1-a497-efc91fb29db8" expires: - '-1' pragma: @@ -1345,7 +1070,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62b72524-8ad4-4028-a383-45c5146508c0 + - 5d5b491c-807c-4a0a-a11e-ebf26b3729b3 status: code: 200 message: OK @@ -1363,25 +1088,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00008878-0000-3300-0000-60c807e20000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:50:25.0178321Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:25.0178321Z"},"location":"centraluseuap","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-15T01:50:26.374068Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","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":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, - TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text - Analytics":"https://csclitest000003.cognitiveservices.azure.com/","qnAMaker":"https://csclitest000003.cognitiveservices.azure.com/","turing":"https://csclitest000003.cognitiveservices.azure.com/","questionAnswering":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"1000e30f-0000-3300-0000-60bc15760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","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":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3850' + - '3518' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:05 GMT + - Sun, 06 Jun 2021 00:23:41 GMT etag: - - '"00008878-0000-3300-0000-60c807e20000"' + - '"1000e30f-0000-3300-0000-60bc15760000"' expires: - '-1' pragma: @@ -1397,7 +1121,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '22' + - '19' status: code: 200 message: OK @@ -1415,12 +1139,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07003162-0000-3300-0000-60c807e40000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b512-0000-3300-0000-60bc15780000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1429,9 +1153,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:07 GMT + - Sun, 06 Jun 2021 00:23:41 GMT etag: - - '"07003162-0000-3300-0000-60c807e40000"' + - '"0000b512-0000-3300-0000-60bc15780000"' expires: - '-1' pragma: @@ -1447,7 +1171,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '70' status: code: 200 message: OK @@ -1465,12 +1189,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07003162-0000-3300-0000-60c807e40000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b512-0000-3300-0000-60bc15780000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1479,9 +1203,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:07 GMT + - Sun, 06 Jun 2021 00:23:41 GMT etag: - - '"07003162-0000-3300-0000-60c807e40000"' + - '"0000b512-0000-3300-0000-60bc15780000"' expires: - '-1' pragma: @@ -1497,15 +1221,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '13' + - '14' status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3", - "name": "cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", + "name": "cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"07003162-0000-3300-0000-60c807e40000\"", "location": "centraluseuap", "properties": + "\"0000b512-0000-3300-0000-60bc15780000\"", "location": "centraluseuap", "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": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1525,12 +1249,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07008562-0000-3300-0000-60c808050000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1539,9 +1263,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:09 GMT + - Sun, 06 Jun 2021 00:23:42 GMT etag: - - '"07008562-0000-3300-0000-60c808050000"' + - '"0000b712-0000-3300-0000-60bc158e0000"' expires: - '-1' pragma: @@ -1557,9 +1281,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '165' + - '143' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1577,12 +1301,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07008562-0000-3300-0000-60c808050000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1591,9 +1315,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:20 GMT + - Sun, 06 Jun 2021 00:23:52 GMT etag: - - '"07008562-0000-3300-0000-60c808050000"' + - '"0000b712-0000-3300-0000-60bc158e0000"' expires: - '-1' pragma: @@ -1609,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '75' status: code: 200 message: OK @@ -1627,12 +1351,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07008562-0000-3300-0000-60c808050000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1641,9 +1365,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:22 GMT + - Sun, 06 Jun 2021 00:23:53 GMT etag: - - '"07008562-0000-3300-0000-60c808050000"' + - '"0000b712-0000-3300-0000-60bc158e0000"' expires: - '-1' pragma: @@ -1659,15 +1383,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '127' + - '12' status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3", - "name": "cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", + "name": "cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"07008562-0000-3300-0000-60c808050000\"", "location": "centraluseuap", "properties": + "\"0000b712-0000-3300-0000-60bc158e0000\"", "location": "centraluseuap", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"}, "groupIds": ["account"], "privateLinkServiceConnectionState": {"status": "Rejected", "description": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1687,12 +1411,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07003d64-0000-3300-0000-60c8082a0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1701,9 +1425,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:45 GMT + - Sun, 06 Jun 2021 00:24:15 GMT etag: - - '"07003d64-0000-3300-0000-60c8082a0000"' + - '"0000b912-0000-3300-0000-60bc15b00000"' expires: - '-1' pragma: @@ -1719,7 +1443,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '22354' + - '22116' x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1739,12 +1463,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07003d64-0000-3300-0000-60c8082a0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1753,9 +1477,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:57 GMT + - Sun, 06 Jun 2021 00:24:26 GMT etag: - - '"07003d64-0000-3300-0000-60c8082a0000"' + - '"0000b912-0000-3300-0000-60bc15b00000"' expires: - '-1' pragma: @@ -1789,12 +1513,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2021-04-30 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","name":"cs_cli_test_000002/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"07003d64-0000-3300-0000-60c8082a0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -1803,7 +1527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:53:58 GMT + - Sun, 06 Jun 2021 00:24:27 GMT expires: - '-1' pragma: @@ -1819,7 +1543,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '16' status: code: 200 message: OK @@ -1839,9 +1563,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 response: body: string: '' @@ -1851,7 +1575,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:54:10 GMT + - Sun, 06 Jun 2021 00:24:39 GMT expires: - '-1' pragma: @@ -1863,9 +1587,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11690' + - '11999' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -1883,9 +1607,9 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.0 + - AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2017-04-18 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2021-04-30 response: body: string: '{"value":[]}' @@ -1897,7 +1621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:54:11 GMT + - Sun, 06 Jun 2021 00:24:39 GMT expires: - '-1' pragma: @@ -1933,9 +1657,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 response: body: string: '' @@ -1943,17 +1670,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df2d913c-e6ae-45bd-95f1-d362c70116e6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 15 Jun 2021 01:54:14 GMT + - Sun, 06 Jun 2021 00:24:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/df2d913c-e6ae-45bd-95f1-d362c70116e6?api-version=2021-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 pragma: - no-cache server: @@ -1964,9 +1691,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd48e884-31e1-4605-8940-2d54874a9048 + - 78f559e5-4130-4526-9994-db4285db6bf6 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1974,7 +1701,57 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 06 Jun 2021 00:24:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d76b997e-9f16-4c40-b93a-07d0c816cc4f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1984,9 +1761,10 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df2d913c-e6ae-45bd-95f1-d362c70116e6?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1998,7 +1776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:54:24 GMT + - Sun, 06 Jun 2021 00:25:00 GMT expires: - '-1' pragma: @@ -2015,7 +1793,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58d04b41-643c-4f0e-bbd8-3bdbb7a2405b + - cda6b2f8-8786-4d1f-a4bf-8e6d4f92e6cb status: code: 200 message: OK @@ -2035,7 +1813,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -2047,7 +1826,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:54:32 GMT + - Sun, 06 Jun 2021 00:25:03 GMT expires: - '-1' pragma: @@ -2059,9 +1838,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '107' + - '79' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK 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 new file mode 100644 index 00000000000..f8eedebdd80 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml @@ -0,0 +1,495 @@ +interactions: +- request: + body: '{"kind": "FormRecognizer", "sku": {"name": "S0"}, "location": "centraluseuap", + "properties": {"customSubDomainName": "csclitest000003"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + Content-Length: + - '137' + Content-Type: + - application/json + ParameterSetName: + - -n -g --kind --sku -l --custom-domain --yes + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"11001180-0000-3300-0000-60bd905c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5780d733-12f6-4aec-b015-0e628fe512dc?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '2684' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:19:56 GMT + etag: + - '"11001180-0000-3300-0000-60bd905c0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '1554' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"11001380-0000-3300-0000-60bd905d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:20:27 GMT + etag: + - '"11001380-0000-3300-0000-60bd905d0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 07 Jun 2021 03:20:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '90' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account show-deleted + Connection: + - keep-alive + ParameterSetName: + - --location -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2021-04-30 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"11002d80-0000-3300-0000-60bd907c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2723' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:20:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '9' + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "properties": {"restore": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account recover + Connection: + - keep-alive + Content-Length: + - '62' + Content-Type: + - application/json + ParameterSetName: + - --location -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"11003180-0000-3300-0000-60bd907f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:20:31.5793098Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:20:31.5793098Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:20:31 GMT + etag: + - '"11003180-0000-3300-0000-60bd907f0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '93' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"11003180-0000-3300-0000-60bd907f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:20:31.5793098Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:20:31.5793098Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:20:32 GMT + etag: + - '"11003180-0000-3300-0000-60bd907f0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 07 Jun 2021 03:20:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '81' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account purge + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --location -n -g + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2021-04-30 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c87a00f0-1821-4df3-95a8-948bdf1792cd?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 07 Jun 2021 03:20:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c87a00f0-1821-4df3-95a8-948bdf1792cd?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '15232' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account list-deleted + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/deletedAccounts?api-version=2021-04-30 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rguxa6qk5hgnevrapaomec55nnxatpby2i4gc7uedcsvufj3v5hsaokyola4a3grrqv/deletedAccounts/cs_cli_test_daex","name":"cs_cli_test_daex","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002e0d-0000-3300-0000-60bc12400000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:08:32.2344875Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:08:32.2344875Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:08:32.464796Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgntdmxg62p2aw42ndiun5ugkbplppxw33ard53uvlnl2u6p4rytt4royrje5vzseqi/deletedAccounts/cognkafdftal","name":"cognkafdftal","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000400d-0000-3300-0000-60bc12630000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:09:06.8016963Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:09:06.8016963Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:09:06.9956902Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg6472zenrlur2pudfctevsoiciu3jwxbp6ulkyxytaweoyqofxred6co6uazvz4crj/deletedAccounts/cs_cli_test_3hvl","name":"cs_cli_test_3hvl","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000cf0d-0000-3300-0000-60bc12f80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgbmsd65beg4iicmf2iixmdidjpximlh546cmwuswyuii3vqupe7loxona262slrh4j/deletedAccounts/cs_cli_test_bezm","name":"cs_cli_test_bezm","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000900f-0000-3300-0000-60bc14f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:07.9487337Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:20:07.9487337Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:20:08.1873617Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgg6iisk3aveex4oh34sg3x6jt3uryyrcqyuohp5fzbx36m7rjjebvvx2gyrh6h3shq/deletedAccounts/cogfn2xcdmvc","name":"cogfn2xcdmvc","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000ae0f-0000-3300-0000-60bc151c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:42.7859305Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:21:14.8066817Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamejd7rrjjb":"tagvalueh4slbel"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:20:42.983225Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgzvg46zhnlo7uixb6gg6ryn2jjge34jk6vq3mc3ih253djafwkectjsegci242oytz/deletedAccounts/cs_cli_test_4g7z","name":"cs_cli_test_4g7z","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000d50f-0000-3300-0000-60bc154f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:21:35.5328404Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:21:35.5328404Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestp72jnyz.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:21:36.2602552Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestp72jnyz","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestp72jnyz.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqr3wrmpmorbrtaorqay7leulugjf7z76gpkbsgcvdfyoyba22hrwwftbw4yodx4kn/deletedAccounts/cs_cli_test_pwn7","name":"cs_cli_test_pwn7","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002f10-0000-3300-0000-60bc15de0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestc5pqctn.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestc5pqctn","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestc5pqctn.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgr34nklm5ur53njv4seuht7ecmk7y577tym5mr56viswftn5sdwj54ctwfac6cn5e5/deletedAccounts/cs_cli_test_n52b","name":"cs_cli_test_n52b","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10007d10-0000-3300-0000-60bc162f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:25:46.7184307Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:25:46.7184307Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:25:47.8568578Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"7e94d86d-0abe-49ab-9875-2b67ea773961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgq7sj2bgcyqdndtw2uymdn2bscxbhylmb2uiqsqfuzjkcb2miv3zbuylrwhyfxdzxp/deletedAccounts/cogxdm5ig5gy","name":"cogxdm5ig5gy","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000a710-0000-3300-0000-60bc16530000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:25:52.7973362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:26:24.7875146Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamefmd5yrt3":"tagvalue6ctfigh"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:25:53.0302083Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgv3jcptfd43sx4em3lufoop6qkkk5eynypipb6ureecd6wqrjvxfskf6jajzbi7cyb/deletedAccounts/cs_cli_test_prih","name":"cs_cli_test_prih","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000aa10-0000-3300-0000-60bc16570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:26:30.3914213Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:26:30.3914213Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvig64fd.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:26:31.0860552Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvig64fd","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvig64fd.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg2rpv75rkke55b4aisa7ktkc4ywioio43colaxcl7wf6w7xk7b23y3qulqpn5bmjlx/deletedAccounts/cs_cli_test_wh3w","name":"cs_cli_test_wh3w","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000c711-0000-3300-0000-60bc17b90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest27pj5ub.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest27pj5ub","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest27pj5ub.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgobtpwvzafdobhenb66j2f5jr62kufziillyu3spi3w5bhobikytnulorbcclz66m3/deletedAccounts/cs_cli_test_2nbk","name":"cs_cli_test_2nbk","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000e311-0000-3300-0000-60bc17da0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:24.2405372Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:24.2405372Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:33:28.5014824Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"97230747-6959-4208-9c4d-dec01b9980a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgz62wpgawkrs64dw7g5bc6j7cbdq4q4xcxdf6c73ixkvmt76othgrlwkydxxf7xs6u/deletedAccounts/cogbpq2ntg76","name":"cogbpq2ntg76","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000ff11-0000-3300-0000-60bc18030000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamebz5vose7":"tagvalue3xezwmb"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggwmmvpsw2zz5qkfg3iqwng6x2kmsodbxuetk5pbfhcqbkofdgmv2optwqfry2ihgx/deletedAccounts/cs_cli_test_2bww","name":"cs_cli_test_2bww","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002912-0000-3300-0000-60bc182a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:34:16.6939879Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:16.6939879Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestomusm3k.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:34:17.736212Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestomusm3k","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestomusm3k.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggwmmvpsw2zz5qkfg3iqwng6x2kmsodbxuetk5pbfhcqbkofdgmv2optwqfry2ihgx/deletedAccounts/cs_cli_test_cr42","name":"cs_cli_test_cr42","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10005012-0000-3300-0000-60bc186d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:34:52.9203047Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:52.9203047Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:34:53.0983681Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqzadtzrzxdwjr3ay6tbqh7caf7yuf2e3s4aluswl5qd4eosrbsesixyfbe5bsjari/deletedAccounts/cs_cli_test_uejm","name":"cs_cli_test_uejm","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10006512-0000-3300-0000-60bc18760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:03.5845019Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:36:03.5845019Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:36:05.014526Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"f4b58f1a-988e-47a7-961b-64e4b3e0ada2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvrljkejcyatpz6muwg23pmjiubqfuzg65j3kqsex6cbfrfbrprzfyzo5spgtokydo/deletedAccounts/cs_cli_test_y3yu","name":"cs_cli_test_y3yu","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10008412-0000-3300-0000-60bc18a00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:16.1979284Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:36:16.1979284Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestbnebqmn.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:36:16.8894529Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestbnebqmn","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestbnebqmn.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvrljkejcyatpz6muwg23pmjiubqfuzg65j3kqsex6cbfrfbrprzfyzo5spgtokydo/deletedAccounts/cs_cli_test_kq3w","name":"cs_cli_test_kq3w","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000f512-0000-3300-0000-60bc19020000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:50.484544Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:37:22.2661964Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestyfxonng.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:36:50.7756325Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestyfxonng","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestyfxonng.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggpdifffns3yyc7tqrowzb6pxf3fq4kl352mibgeycrdrjzxe4krwokck5rx2ywjaw/deletedAccounts/cs_cli_test_d6t6","name":"cs_cli_test_d6t6","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10001513-0000-3300-0000-60bc19260000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggpdifffns3yyc7tqrowzb6pxf3fq4kl352mibgeycrdrjzxe4krwokck5rx2ywjaw/deletedAccounts/cs_cli_test_otus","name":"cs_cli_test_otus","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10001b13-0000-3300-0000-60bc192d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgn4czfoyzrbzkpi4q4wt2l7psyiwt2xuhlh4c6dyr2auqfzrtca2w6xo4cskulmapu/deletedAccounts/cs_cli_test_wjwt","name":"cs_cli_test_wjwt","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10004613-0000-3300-0000-60bc19520000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:14.5083564Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:14.5083564Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestgjkzuim.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:39:14.9325476Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestgjkzuim","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestgjkzuim.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgn4czfoyzrbzkpi4q4wt2l7psyiwt2xuhlh4c6dyr2auqfzrtca2w6xo4cskulmapu/deletedAccounts/cs_cli_test_gt4h","name":"cs_cli_test_gt4h","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10009f13-0000-3300-0000-60bc19950000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:40:22.0260177Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvo56hj3.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvo56hj3","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvo56hj3.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqyoyr6ovurqsnwlcjeyk54um6mc7azqa3wirehfopfd6p2wxplqg3ij45iu5zvtii/deletedAccounts/cs_cli_test_nu47","name":"cs_cli_test_nu47","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100027d-0000-3300-0000-60bd8dd10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:08:32.6326457Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:08:32.6326457Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitesta6uk2fl.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:08:33.3527365Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitesta6uk2fl","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitesta6uk2fl.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rglze67xuvj3k6vode2ijliqlrsyomkjh36wqvfjo6leo23zsvyf3rgf5uosnxykjb7/deletedAccounts/cs_cli_test_6q43","name":"cs_cli_test_6q43","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100f27d-0000-3300-0000-60bd8e450000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:10:28.4431218Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:10:28.4431218Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvwrvmt3.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:10:29.1647216Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvwrvmt3","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvwrvmt3.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvickwpxv4ea6nty3ivsnpxim77puuo43ojnnud3mkdu7fxhcdarfn4p55z3zfp2rm/deletedAccounts/cs_cli_test_omg2","name":"cs_cli_test_omg2","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"11007e7e-0000-3300-0000-60bd8f070000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:13:42.3430172Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:13:42.3430172Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestaydklwc.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:13:43.0551822Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestaydklwc","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestaydklwc.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgquzdjt2zyexrpsyqeppivtiqztw3mafujym7qtgqoeolrow5vp3nu4lkdcrsk5zft/deletedAccounts/cs_cli_test_e5vk","name":"cs_cli_test_e5vk","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100597f-0000-3300-0000-60bd8fcb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:16:58.110578Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:16:58.110578Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestook3tkx.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:16:58.8436443Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestook3tkx","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestook3tkx.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '72959' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 07 Jun 2021 03:21:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 423a8d38-6681-48e4-adbf-04a826da9471 + - a48208a0-a174-461f-8f9b-cb81f60932e7 + - a605fb10-2b3f-4858-8d5b-a9f180ce4602 + - a44da617-a019-4104-a447-e7c6a923c302 + - 10668915-f1b0-4071-ae5f-3014c0030b5d + - 08ea1279-9b69-4174-a4e0-979473b25354 + - 291d223a-ef9e-40e3-8da9-7058cb141132 + - daa6c2e0-2976-4067-8d95-197aea0d970b + - 66a28881-cad0-4bfd-a437-b626c1e8efbf + - 86e6de41-8142-4b10-b31f-253d5f6d79c7 + - 27ddd712-be83-4f99-b674-7bf04102fe59 + - a8756d7c-c683-42db-8257-6329c4c124d0 + - 05c1ad45-8043-4203-aef8-5398d5974849 + - b7a5a496-9730-4f47-a2ee-3f90192c02a3 + - 60606f60-d9b3-49c7-ad3a-335e35765b83 + - 104629db-8d97-4fa1-96f3-582c83d1d247 + - 15644a2f-7f42-4904-9ca1-84eddb657cbd + - 14991ae8-70a3-42a8-be0d-2b9715fee76c + - 7c493f45-70e8-4fcf-bb61-c4991278da8b + - 28cb851b-9af8-4274-919b-ae379d02f05d + - 99728415-1870-4010-86a0-49b1e118eaac + - aa87f30a-47ee-4897-afee-84b67f8bbbf9 + - e087bd9e-fdb3-430c-afa0-ce5336642980 + - 9006f089-de73-4d2a-84a9-38337cc6e71c + - 29c91750-6511-4d11-a123-cbd52faf35dc + - 08191e20-049c-43e4-98f0-965da7aa1fd2 + - 266d0f87-3587-4848-a804-4d878ea19319 + - 3a404733-5395-4ee2-b1f8-05c7f0f0981d + - 37de4050-6531-4521-8007-c4e8323275d5 + - 76bf4147-71f6-4281-9863-282455bb0ebd + - 156f0191-dc7a-4ca4-8418-f4d7049801da + status: + code: 200 + message: OK +version: 1 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 d17ed36d272..646bc882ee3 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 @@ -19,27 +19,27 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --storage --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003878-0000-3300-0000-60c807370000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.5011588Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.5011588Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-15T01:49:42.7577237Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001313-0000-3300-0000-60bc19250000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"a363cdcf-3433-47d7-8ede-7ff8f5f8ef46","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3490' + - '3373' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:44 GMT + - Sun, 06 Jun 2021 00:39:01 GMT etag: - - '"00003878-0000-3300-0000-60c807370000"' + - '"10001313-0000-3300-0000-60bc19250000"' expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '529' + - '342' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -71,27 +71,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00003878-0000-3300-0000-60c807370000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:39.5011588Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:39.5011588Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-15T01:49:42.7577237Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001313-0000-3300-0000-60bc19250000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"a363cdcf-3433-47d7-8ede-7ff8f5f8ef46","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3490' + - '3373' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:49:46 GMT + - Sun, 06 Jun 2021 00:39:01 GMT etag: - - '"00003878-0000-3300-0000-60c807370000"' + - '"10001313-0000-3300-0000-60bc19250000"' expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '41' + - '9' status: code: 200 message: OK @@ -127,7 +127,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -139,7 +140,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:49:51 GMT + - Sun, 06 Jun 2021 00:39:03 GMT expires: - '-1' pragma: @@ -151,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '132' + - '92' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -176,27 +177,27 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00004878-0000-3300-0000-60c807490000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:55.9785156Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:55.9785156Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-15T01:50:01.4889794Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001713-0000-3300-0000-60bc192a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:04.6059666Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"b0575ad4-62ac-4208-a541-1226427afa36","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3318' + - '3201' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:03 GMT + - Sun, 06 Jun 2021 00:39:06 GMT etag: - - '"00004878-0000-3300-0000-60c807490000"' + - '"10001713-0000-3300-0000-60bc192a0000"' expires: - '-1' pragma: @@ -208,9 +209,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '243' + - '362' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -228,27 +229,27 @@ interactions: ParameterSetName: - -n -g --storage User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00004878-0000-3300-0000-60c807490000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:55.9785156Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:49:55.9785156Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-15T01:50:01.4889794Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001713-0000-3300-0000-60bc192a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:04.6059666Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"b0575ad4-62ac-4208-a541-1226427afa36","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3318' + - '3201' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:04 GMT + - Sun, 06 Jun 2021 00:39:06 GMT etag: - - '"00004878-0000-3300-0000-60c807490000"' + - '"10001713-0000-3300-0000-60bc192a0000"' expires: - '-1' pragma: @@ -264,7 +265,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '9' status: code: 200 message: OK @@ -287,27 +288,27 @@ interactions: ParameterSetName: - -n -g --storage User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00004a78-0000-3300-0000-60c8074e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:55.9785156Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:05.8158075Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:01.4889794Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001913-0000-3300-0000-60bc192b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"b0575ad4-62ac-4208-a541-1226427afa36","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3490' + - '3373' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:08 GMT + - Sun, 06 Jun 2021 00:39:07 GMT etag: - - '"00004a78-0000-3300-0000-60c8074e0000"' + - '"10001913-0000-3300-0000-60bc192b0000"' expires: - '-1' pragma: @@ -323,7 +324,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '133' + - '105' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -343,27 +344,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"00004a78-0000-3300-0000-60c8074e0000\"","systemData":{"createdBy":"v-jiechen@microsoft.com","createdByType":"User","createdAt":"2021-06-15T01:49:55.9785156Z","lastModifiedBy":"v-jiechen@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T01:50:05.8158075Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-15T01:50:01.4889794Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"10001913-0000-3300-0000-60bc192b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"b0575ad4-62ac-4208-a541-1226427afa36","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3490' + - '3373' content-type: - application/json; charset=utf-8 date: - - Tue, 15 Jun 2021 01:50:08 GMT + - Sun, 06 Jun 2021 00:39:07 GMT etag: - - '"00004a78-0000-3300-0000-60c8074e0000"' + - '"10001913-0000-3300-0000-60bc192b0000"' expires: - '-1' pragma: @@ -379,7 +380,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '73' status: code: 200 message: OK @@ -399,7 +400,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 + (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -411,7 +413,7 @@ interactions: content-length: - '0' date: - - Tue, 15 Jun 2021 01:50:16 GMT + - Sun, 06 Jun 2021 00:39:10 GMT expires: - '-1' pragma: @@ -423,7 +425,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '103' + - '88' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py index 35124481fae..1a0e8136ab0 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_byox.py @@ -49,8 +49,7 @@ def test_cognitiveservices_user_owned_storage(self, resource_group): '--assign-identity --yes', checks=[self.check('name', '{sname}'), self.check('location', '{location}'), - self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) self.cmd('az cognitiveservices account update -n {sname} -g {rg} --storage {storageIds}').get_output_in_json() account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() @@ -69,8 +68,8 @@ def test_cognitiveservices_encryption(self, resource_group): self.kwargs.update({ 'sname': sname, - 'kind': 'Face', - 'sku': 'E0', + 'kind': 'FormRecognizer', + 'sku': 'S0', 'location': 'centraluseuap', 'encryption': '{\\\"keySource\\\":\\\"Microsoft.CognitiveServices\\\"}' }) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_command.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_command.py index 3b15ceb6127..ce9dcad1a89 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_command.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_command.py @@ -19,9 +19,9 @@ def test_cognitiveservices_crud(self, resource_group): self.kwargs.update({ 'sname': sname, - 'kind': 'Face', + 'kind': 'FormRecognizer', 'sku': 'S0', - 'location': 'westeurope', + 'location': 'centraluseuap', 'tags': tagname + '=' + tagvalue }) @@ -29,8 +29,7 @@ def test_cognitiveservices_crud(self, resource_group): 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}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) # test to show the details of cognitive services account self.cmd('az cognitiveservices account show -n {sname} -g {rg}', @@ -48,7 +47,7 @@ def test_cognitiveservices_crud(self, resource_group): self.check('length(key2)', 32)]).get_output_in_json() # test to regenerate the keys of a cognitive services account - newkeys = self.cmd('az cognitiveservices account keys regenerate -n {sname} -g {rg} --key-name key1').get_output_in_json() # pylint: disable=line-too-long + newkeys = self.cmd('az cognitiveservices account keys regenerate -n {sname} -g {rg} --key-name Key1').get_output_in_json() # pylint: disable=line-too-long self.assertNotEqual(oldkeys, newkeys) # test to list cognitive service accounts under current resource group @@ -72,16 +71,15 @@ def test_cognitiveservices_account_list_skus_legacy(self, resource_group): self.kwargs.update({ 'name': self.create_random_name(prefix='cs_cli_test_', length=16), - 'kind': 'Face', + 'kind': 'FormRecognizer', 'sku': 'S0', - 'location': 'westeurope' + 'location': 'centraluseuap' }) self.cmd('az cognitiveservices account create -n {name} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', checks=[self.check('name', '{name}'), self.check('location', '{location}'), - self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) results = self.cmd('az cognitiveservices account list-skus -n {name} -g {rg}').get_output_in_json() self.assertTrue(isinstance(results['value'], list)) @@ -124,8 +122,7 @@ def test_cognitiveservices_account_list_usage(self, resource_group): self.cmd('az cognitiveservices account create -n {name} -g {rg} --kind {kind} --sku {sku} -l {location}', checks=[self.check('name', '{name}'), self.check('location', '{location}'), - self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) results = self.cmd('az cognitiveservices account list-usage -n {name} -g {rg}').get_output_in_json() self.assertTrue(isinstance(results, list)) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_softdelete.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_softdelete.py new file mode 100644 index 00000000000..4b40acd091d --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_cognitiveservices_softdelete.py @@ -0,0 +1,64 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +import os +import time +import unittest + +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer +from azure_devtools.scenario_tests import AllowLargeResponse +from knack.util import CLIError + + +class CognitiveServicesTests(ScenarioTest): + @ResourceGroupPreparer() + def test_cognitiveservices_softdelete(self, resource_group): + sname = self.create_random_name(prefix='cs_cli_test_', length=16) + customdomain = self.create_random_name(prefix='csclitest', length=16) + + self.kwargs.update({ + 'sname': sname, + 'kind': 'FormRecognizer', + 'sku': 'S0', + 'location': 'centraluseuap', + 'customdomain': customdomain + }) + + # test to create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --custom-domain {customdomain} --yes', + checks=[self.check('name', '{sname}'), + self.check('location', '{location}'), + self.check('sku.name', '{sku}'), + self.check('properties.customSubDomainName', '{customdomain}')]) + + # test to show the details of cognitive services account + self.cmd('az cognitiveservices account show -n {sname} -g {rg}', + checks=[self.check('name', '{sname}'), + self.check('resourceGroup', '{rg}'), + self.check('properties.customSubDomainName', '{customdomain}')]) + + # test to update the properties of cognitive services account + self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + + self.cmd('az cognitiveservices account show-deleted --location {location} -n {sname} -g {rg}', + checks=[self.check('name', '{sname}'), + self.check('properties.customSubDomainName', '{customdomain}')]) + + self.cmd('az cognitiveservices account recover --location {location} -n {sname} -g {rg}') + + self.cmd('az cognitiveservices account show -n {sname} -g {rg}', + checks=[self.check('name', '{sname}'), + self.check('resourceGroup', '{rg}'), + self.check('properties.customSubDomainName', '{customdomain}')]) + + + self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.cmd('az cognitiveservices account purge --location {location} -n {sname} -g {rg}') + deleted_accounts = self.cmd('az cognitiveservices account list-deleted').get_output_in_json() + + self.assertEqual(0, 0) + + +if __name__ == '__main__': + unittest.main() diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_custom_domain.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_custom_domain.py index 316ceba4bad..5317f40189a 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_custom_domain.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_custom_domain.py @@ -16,9 +16,9 @@ def test_cognitiveservices_custom_domain(self, resource_group): self.kwargs.update({ 'sname': sname, - 'kind': 'Face', + 'kind': 'FormRecognizer', 'sku': 'S0', - 'location': 'westus', + 'location': 'centraluseuap', 'customdomain': customdomain, }) @@ -28,7 +28,6 @@ def test_cognitiveservices_custom_domain(self, resource_group): checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded'), self.check('properties.customSubDomainName', '{customdomain}')]) # delete the cognitive services account @@ -44,15 +43,13 @@ def test_cognitiveservices_custom_domain(self, resource_group): 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}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) # test to create cognitive services account self.cmd('az cognitiveservices account update -n {sname} -g {rg} --custom-domain {customdomain}', checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded'), self.check('properties.customSubDomainName', '{customdomain}')]) # delete the cognitive services account diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_network_rules.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_network_rules.py index d8158854198..b31b79ef77f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_network_rules.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_network_rules.py @@ -17,9 +17,9 @@ def test_cognitiveservices_network_rules(self, resource_group): self.kwargs.update({ 'sname': sname, 'vnetname': sname, - 'kind': 'Face', + 'kind': 'FormRecognizer', 'sku': 'S0', - 'location': 'westus', + 'location': 'centraluseuap', 'customdomain': customdomain, }) @@ -34,8 +34,7 @@ def test_cognitiveservices_network_rules(self, resource_group): ' --custom-domain {customdomain} --yes', checks=[self.check('name', '{sname}'), self.check('location', '{location}'), - self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) rules = self.cmd('az cognitiveservices account network-rule list -n {sname} -g {rg}').get_output_in_json() self.assertEqual(len(rules['ipRules']), 0) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_private_endpoint.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_private_endpoint.py index 487651c7d32..f939541e4fb 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_private_endpoint.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_private_endpoint.py @@ -78,8 +78,8 @@ def test_cognitiveservices_private_endpoint_connection(self, resource_group): self.kwargs.update({ 'sname': sname, - 'kind': 'TextAnalytics', - 'sku': 'S', + 'kind': 'FormRecognizer', + 'sku': 'S0', 'vnetname': sname, 'pename': 'pe' + sname, 'customdomain': customdomain, @@ -91,8 +91,7 @@ def test_cognitiveservices_private_endpoint_connection(self, resource_group): '--custom-domain {customdomain}', checks=[self.check('name', '{sname}'), self.check('location', '{location}'), - self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Succeeded')]) + self.check('sku.name', '{sku}')]) # delete the cognitive services account plResource = self.cmd('az network private-link-resource list -g {rg} -n {sname} ' diff --git a/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py b/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py index f90ca76095d..c322e6cfc41 100644 --- a/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py @@ -20,7 +20,7 @@ def register_providers(): _register_one_provider('Microsoft.AppConfiguration/configurationStores', '2020-06-01', True) # "Microsoft.Batch/batchAccounts", "2020-03-01", True # "Microsoft.Cache/redisEnterprise", "2021-03-01", True - _register_one_provider('Microsoft.CognitiveServices/accounts', '2017-04-18', True) + _register_one_provider('Microsoft.CognitiveServices/accounts', '2021-04-30', True) _register_one_provider('Microsoft.Compute/diskAccesses', '2020-09-30', True) _register_one_provider('Microsoft.ContainerRegistry/registries', '2019-12-01-preview', True) _register_one_provider('Microsoft.DBforMySQL/servers', '2018-06-01', False, '2017-12-01-preview') From 7bdd5a25b566ea25e740baa2df4fd217cc7e10b2 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Tue, 15 Jun 2021 11:02:28 -0700 Subject: [PATCH 2/7] fix comments --- .../cli/command_modules/cognitiveservices/_params.py | 4 ++-- .../cli/command_modules/cognitiveservices/custom.py | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) 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 23baee40f6c..7c62acb31ce 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- import re -from knack.arguments import CLIArgumentType +from knack.arguments import CLIArgumentType, CaseInsensitiveList from knack.log import get_logger from azure.cli.core.commands.parameters import ( @@ -147,7 +147,7 @@ def load_arguments(self, _): c.argument('kind', help='the API name of cognitive services account', completer=kind_completer) c.argument('tags', tags_type) - c.argument('key_name', required=True, help='Key name to generate', choices=['Key1', 'Key2']) + c.argument('key_name', required=True, help='Key name to generate', choices=CaseInsensitiveList(['Key1', 'Key2'])) c.argument('api_properties', api_properties_type) c.argument('custom_domain', help='User domain assigned to the account. Name is the CNAME source.') c.argument('storage', help='The storage accounts for this resource, in JSON array format.') 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 fff03b51656..585d8c16a9f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -31,7 +31,7 @@ def recover(client, location, resource_group_name, account_name): params = CognitiveServicesAccount(properties=properties) params.location = location - return client.begin_create(resource_group_name, account_name, params).result() + return client.begin_create(resource_group_name, account_name, params) def list_usages(client, resource_group_name, account_name): @@ -135,7 +135,7 @@ def create( if encryption is not None: params.properties.encryption = json.loads(encryption) - return client.begin_create(resource_group_name, account_name, params).result() + return client.begin_create(resource_group_name, account_name, params) def update(client, resource_group_name, account_name, sku_name=None, custom_domain=None, @@ -161,7 +161,7 @@ def update(client, resource_group_name, account_name, sku_name=None, custom_doma if encryption is not None: params.properties.encryption = json.loads(encryption) - return client.begin_update(resource_group_name, account_name, params).result() + return client.begin_update(resource_group_name, account_name, params) def default_network_acls(): @@ -204,7 +204,7 @@ def add_network_rule(client, resource_group_name, account_name, subnet=None, properties.network_acls = rules params = CognitiveServicesAccount(properties=properties) - return client.begin_update(resource_group_name, account_name, params).result() + return client.begin_update(resource_group_name, account_name, params) def remove_network_rule(client, resource_group_name, account_name, ip_address=None, subnet=None, @@ -225,7 +225,7 @@ def remove_network_rule(client, resource_group_name, account_name, ip_address=No properties.network_acls = rules params = CognitiveServicesAccount(properties=properties) - return client.begin_update(resource_group_name, account_name, params).result() + return client.begin_update(resource_group_name, account_name, params) def identity_assign(client, resource_group_name, account_name): @@ -238,7 +238,7 @@ def identity_assign(client, resource_group_name, account_name): def identity_remove(client, resource_group_name, account_name): params = CognitiveServicesAccount() params.identity = Identity(type=IdentityType.none) - client.begin_update(resource_group_name, account_name, params).wait() + client.begin_update(resource_group_name, account_name, params) def identity_show(client, resource_group_name, account_name): From 4044d1ce5f2a5faac2df951ae6c3af320c05e0b1 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Wed, 16 Jun 2021 23:31:48 -0700 Subject: [PATCH 3/7] Fix style --- .../cli/command_modules/cognitiveservices/_client_factory.py | 1 + .../azure/cli/command_modules/cognitiveservices/_help.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 d61543fbd3a..2218ab46d94 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 @@ -13,6 +13,7 @@ def get_cognitiveservices_management_client(cli_ctx, *_): def cf_accounts(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).accounts + def cf_deleted_accounts(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).deleted_accounts 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 98008384a0d..6d7606e496c 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py @@ -239,4 +239,4 @@ examples: - name: Purge a soft-deleted Azure Cognitive Services account. text: az cognitiveservices account purge --location eastus --resource-group cognitive-services-resource-group --name cognitive-services-account-name -""" \ No newline at end of file +""" From 2c23d1a949ac21ce9197aa98491080143d19e907 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Thu, 17 Jun 2021 00:26:34 -0700 Subject: [PATCH 4/7] re-record tests --- ...ognitiveservices_account_capabilities.yaml | 133 +- ..._cognitiveservices_account_list_kinds.yaml | 9 +- ...t_cognitiveservices_account_list_skus.yaml | 18 +- ...tiveservices_account_list_skus_legacy.yaml | 120 +- ..._cognitiveservices_account_list_usage.yaml | 181 +- ...ervices_account_public_network_access.yaml | 181 +- ...gnitiveservices_create_api_properties.yaml | 38 +- .../test_cognitiveservices_crud.yaml | 177 +- .../test_cognitiveservices_custom_domain.yaml | 370 ++- .../test_cognitiveservices_encryption.yaml | 363 ++- .../test_cognitiveservices_identity.yaml | 434 +++- ...eservices_identity_assign_when_create.yaml | 115 +- .../test_cognitiveservices_network_rules.yaml | 2039 ++++++++++++----- ...st_cognitiveservices_private_endpoint.yaml | 388 ++-- ...eservices_private_endpoint_connection.yaml | 622 +++-- .../test_cognitiveservices_softdelete.yaml | 368 ++- ..._cognitiveservices_user_owned_storage.yaml | 122 +- 17 files changed, 4082 insertions(+), 1596 deletions(-) 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 6fff84db5fe..451fdfff822 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00db3b-0000-3300-0000-60b97b3c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:00:43.8249027Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:00:43.8249027Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:00:44.4058473Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0100f6b1-0000-3300-0000-60caeea30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:41:38.925939Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:41:38.925939Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:41:39.1623978Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/fd11ac50-10a2-45c6-9393-9b92a65ff43a?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6c81adc0-41cd-42b5-b641-a7784928ee06?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1394' + - '1101' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:00:45 GMT + - Thu, 17 Jun 2021 06:41:51 GMT etag: - - '"0d00db3b-0000-3300-0000-60b97b3c0000"' + - '"0100f6b1-0000-3300-0000-60caeea30000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '925' + - '430' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6c81adc0-41cd-42b5-b641-a7784928ee06?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6c81adc0-41cd-42b5-b641-a7784928ee06","name":"6c81adc0-41cd-42b5-b641-a7784928ee06","status":"Succeeded","startTime":"2021-06-17T06:41:39Z","endTime":"2021-06-17T06:41:40Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:42:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '13' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100f8b1-0000-3300-0000-60caeea40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:41:38.925939Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:41:38.925939Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:41:39.1623978Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1102' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:42:21 GMT + etag: + - '"0100f8b1-0000-3300-0000-60caeea40000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '18' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,24 +166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00dc3b-0000-3300-0000-60b97b3d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:00:43.8249027Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:00:43.8249027Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:00:44.4058473Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100f8b1-0000-3300-0000-60caeea40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:41:38.925939Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:41:38.925939Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:41:39.1623978Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1395' + - '1102' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:01:15 GMT + - Thu, 17 Jun 2021 06:42:22 GMT etag: - - '"0d00dc3b-0000-3300-0000-60b97b3d0000"' + - '"0100f8b1-0000-3300-0000-60caeea40000"' expires: - '-1' pragma: @@ -102,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '13' + - '11' status: code: 200 message: OK @@ -122,8 +218,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -135,7 +230,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 01:01:17 GMT + - Thu, 17 Jun 2021 06:42:24 GMT expires: - '-1' pragma: @@ -147,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '112' + - '95' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 0eac5bb1e46..222ad17f381 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 @@ -11,22 +11,21 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '314831' + - '315195' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:03:09 GMT + - Thu, 17 Jun 2021 06:45:42 GMT expires: - '-1' pragma: 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 bd015ec02c1..f847c48714e 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 @@ -13,22 +13,21 @@ interactions: ParameterSetName: - --kind User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '314831' + - '315195' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:03:10 GMT + - Thu, 17 Jun 2021 06:45:44 GMT expires: - '-1' pragma: @@ -56,22 +55,21 @@ interactions: ParameterSetName: - --kind --location User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2021-04-30 response: body: - string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' + string: '{"value":[{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","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":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","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":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","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":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","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":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","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":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","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":"F0","tier":"Free","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":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","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":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","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":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","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":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","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":"S0","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":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","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":"S0","tier":"Standard","kind":"SpeechServices","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":"S0","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":"S2","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":"S4","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":"F0","tier":"Free","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":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","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":"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":"C3","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":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","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":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","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":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","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":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","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":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","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":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","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":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","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":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","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":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","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":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","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":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","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":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","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":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","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":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","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":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","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":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","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":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","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":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","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":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' headers: cache-control: - no-cache content-length: - - '314831' + - '315195' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:03:10 GMT + - Thu, 17 Jun 2021 06:45:44 GMT expires: - '-1' pragma: 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 2d6d21cf8be..d1197c948b2 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10004f0f-0000-3300-0000-60bc14b80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:07.9487337Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:20:07.9487337Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:20:08.1873617Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"010053b2-0000-3300-0000-60caefa60000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:58.326117Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:58.326117Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:45:58.5186213Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5bd55f4e-5039-4854-9605-095df34f83f7?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/332e3c7b-feaa-4d46-b2ea-20d1d0563cda?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2637' + - '2344' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:20:08 GMT + - Thu, 17 Jun 2021 06:45:58 GMT etag: - - '"10004f0f-0000-3300-0000-60bc14b80000"' + - '"010053b2-0000-3300-0000-60caefa60000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '455' + - '479' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/332e3c7b-feaa-4d46-b2ea-20d1d0563cda?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/332e3c7b-feaa-4d46-b2ea-20d1d0563cda","name":"332e3c7b-feaa-4d46-b2ea-20d1d0563cda","status":"Succeeded","startTime":"2021-06-17T06:45:58Z","endTime":"2021-06-17T06:45:59Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:46:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '81' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"010054b2-0000-3300-0000-60caefa70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:58.326117Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:58.326117Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:45:58.5186213Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2345' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:46:28 GMT + etag: + - '"010054b2-0000-3300-0000-60caefa70000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,8 +166,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -84,7 +180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:20:39 GMT + - Thu, 17 Jun 2021 06:46:30 GMT expires: - '-1' pragma: @@ -100,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '20' + - '17' status: code: 200 message: OK 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 b06a6d41e15..442da68ffd3 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "sku": {"name": "S0"}, "location": "westeurope", + body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westeurope", "properties": {}}' headers: Accept: @@ -12,33 +12,33 @@ interactions: Connection: - keep-alive Content-Length: - - '92' + - '91' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"3101f093-0000-0d00-0000-60b998b80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:06:31.8528338Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:06:31.8528338Z"},"location":"westeurope","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:06:32.4257198Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text - Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0c0015c7-0000-0d00-0000-60caefca0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:46:33.5372851Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:46:33.5372851Z"},"location":"westeurope","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:46:34.1497742Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, + TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/","questionAnswering":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/e3511a49-3e83-4a76-a1e2-938fda65cc72?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/5303c053-2918-48c0-affe-82b07b0d4849?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1460' + - '2970' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:06:33 GMT + - Thu, 17 Jun 2021 06:46:35 GMT etag: - - '"3101f093-0000-0d00-0000-60b998b80000"' + - '"0c0015c7-0000-0d00-0000-60caefca0000"' expires: - '-1' pragma: @@ -50,12 +50,160 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '691' + - '547' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/5303c053-2918-48c0-affe-82b07b0d4849?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/5303c053-2918-48c0-affe-82b07b0d4849","name":"5303c053-2918-48c0-affe-82b07b0d4849","status":"Creating","startTime":"2021-06-17T06:46:34Z"}' + headers: + cache-control: + - no-cache + content-length: + - '274' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:47:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '82' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/5303c053-2918-48c0-affe-82b07b0d4849?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/operationResults/5303c053-2918-48c0-affe-82b07b0d4849","name":"5303c053-2918-48c0-affe-82b07b0d4849","status":"Succeeded","startTime":"2021-06-17T06:46:34Z","endTime":"2021-06-17T06:47:19Z"}' + headers: + cache-control: + - no-cache + content-length: + - '308' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:47:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '77' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0c0024c8-0000-0d00-0000-60caeff70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:46:33.5372851Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:46:33.5372851Z"},"location":"westeurope","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:46:34.1497742Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, + TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/","questionAnswering":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2971' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:47:36 GMT + etag: + - '"0c0024c8-0000-0d00-0000-60caeff70000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '15' + status: + code: 200 + message: OK - request: body: null headers: @@ -70,22 +218,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: body: - string: '{"value":[{"name":{"value":"CognitiveServices.TextAnalytics.Commitment.S0","localizedValue":"CognitiveServices.TextAnalytics.Commitment.S0"},"status":"Included","currentValue":0.0,"limit":25000.0,"nextResetTime":"2021-07-01T00:00:00Z"}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '237' + - '12' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:07:04 GMT + - Thu, 17 Jun 2021 06:47:36 GMT expires: - '-1' pragma: @@ -101,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '123' + - '127' status: code: 200 message: OK 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 c0072b72193..c7ab10dde37 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 @@ -18,16 +18,15 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00ef3b-0000-3300-0000-60b97b610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:01:21.3647266Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:01:21.3647266Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:01:21.7773491Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"010011b2-0000-3300-0000-60caeed40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:42:28.3970351Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:42:28.3970351Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:42:28.5815991Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f6c4fb5f-b98d-4715-bf10-517bff8307ab?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3e59698-3f8d-4b94-b3ab-9ae031c4062d?api-version=2017-04-18 cache-control: - no-cache content-length: @@ -35,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:01:22 GMT + - Thu, 17 Jun 2021 06:42:29 GMT etag: - - '"0d00ef3b-0000-3300-0000-60b97b610000"' + - '"010011b2-0000-3300-0000-60caeed40000"' expires: - '-1' pragma: @@ -49,12 +48,160 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '478' + - '381' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3e59698-3f8d-4b94-b3ab-9ae031c4062d?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3e59698-3f8d-4b94-b3ab-9ae031c4062d","name":"e3e59698-3f8d-4b94-b3ab-9ae031c4062d","status":"Succeeded","startTime":"2021-06-17T06:42:28Z","endTime":"2021-06-17T06:42:29Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:42:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '6' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"010012b2-0000-3300-0000-60caeed50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:42:28.3970351Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:42:28.3970351Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:42:28.5815991Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:42:58 GMT + etag: + - '"010012b2-0000-3300-0000-60caeed50000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"010012b2-0000-3300-0000-60caeed50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:42:28.3970351Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:42:28.3970351Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:42:28.5815991Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:43:00 GMT + etag: + - '"010012b2-0000-3300-0000-60caeed50000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '22' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,13 +216,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00f03b-0000-3300-0000-60b97b670000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:01:21.3647266Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:01:21.3647266Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:01:21.7773491Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"010012b2-0000-3300-0000-60caeed50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:42:28.3970351Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:42:28.3970351Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:42:28.5815991Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -84,9 +230,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:01:52 GMT + - Thu, 17 Jun 2021 06:43:15 GMT etag: - - '"0d00f03b-0000-3300-0000-60b97b670000"' + - '"010012b2-0000-3300-0000-60caeed50000"' expires: - '-1' pragma: @@ -102,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '13' + - '8' status: code: 200 message: OK @@ -122,8 +268,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -135,7 +280,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 01:01:55 GMT + - Thu, 17 Jun 2021 06:43:17 GMT expires: - '-1' pragma: @@ -147,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '91' + - '89' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 3a2b40926ce..240c173ed34 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 @@ -18,13 +18,12 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"8800c4ae-0000-0700-0000-60b97e050000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:12:36.9324908Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:12:36.9324908Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:12:37.1391963Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"8700f42c-0000-0700-0000-60caef090000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:21.2574994Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:21.2574994Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:21.4796743Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -33,9 +32,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:12:37 GMT + - Thu, 17 Jun 2021 06:43:21 GMT etag: - - '"8800c4ae-0000-0700-0000-60b97e050000"' + - '"8700f42c-0000-0700-0000-60caef090000"' expires: - '-1' pragma: @@ -47,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '900' + - '447' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -69,8 +68,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -82,7 +80,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 01:12:40 GMT + - Thu, 17 Jun 2021 06:43:24 GMT expires: - '-1' pragma: @@ -94,7 +92,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '65' + - '93' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -119,24 +117,23 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"8800e5ae-0000-0700-0000-60b97e0a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:12:42.286541Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:12:42.286541Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T01:12:42.4429369Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"87002b2d-0000-0700-0000-60caef0e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:25.9985633Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:25.9985633Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:26.2888149Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1199' + - '1201' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:12:42 GMT + - Thu, 17 Jun 2021 06:43:27 GMT etag: - - '"8800e5ae-0000-0700-0000-60b97e0a0000"' + - '"87002b2d-0000-0700-0000-60caef0e0000"' expires: - '-1' pragma: @@ -148,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '587' + - '593' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -170,8 +167,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -183,7 +179,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 01:12:46 GMT + - Thu, 17 Jun 2021 06:43:29 GMT expires: - '-1' pragma: @@ -195,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '63' + - '83' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 dc59598e136..18cec6d5616 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"1000e411-0000-3300-0000-60bc17e10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:37.1658138Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006eb2-0000-3300-0000-60caf00c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:47:40.0236149Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6581ad39-0c59-4eff-8708-43b710af9fb7?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/00a571a3-5c6b-46b0-9624-691e8984557c?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2629' + - '2338' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:33:37 GMT + - Thu, 17 Jun 2021 06:47:40 GMT etag: - - '"1000e411-0000-3300-0000-60bc17e10000"' + - '"01006eb2-0000-3300-0000-60caf00c0000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '270' + - '340' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/00a571a3-5c6b-46b0-9624-691e8984557c?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/00a571a3-5c6b-46b0-9624-691e8984557c","name":"00a571a3-5c6b-46b0-9624-691e8984557c","status":"Succeeded","startTime":"2021-06-17T06:47:40Z","endTime":"2021-06-17T06:47:41Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:48:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 + 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":"\"01006fb2-0000-3300-0000-60caf00d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:47:40.0236149Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2339' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:48:10 GMT + etag: + - '"01006fb2-0000-3300-0000-60caf00d0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '13' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,24 +166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"1000e511-0000-3300-0000-60bc17e30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:37.1658138Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006fb2-0000-3300-0000-60caf00d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:47:40.0236149Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2630' + - '2339' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:34:07 GMT + - Thu, 17 Jun 2021 06:48:11 GMT etag: - - '"1000e511-0000-3300-0000-60bc17e30000"' + - '"01006fb2-0000-3300-0000-60caf00d0000"' expires: - '-1' pragma: @@ -102,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '17' status: code: 200 message: OK @@ -125,24 +221,23 @@ interactions: ParameterSetName: - -n -g --sku --tags User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 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":"\"1000f911-0000-3300-0000-60bc18010000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"010075b2-0000-3300-0000-60caf02c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:12.7057996Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}' headers: cache-control: - no-cache content-length: - - '2674' + - '2384' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:34:09 GMT + - Thu, 17 Jun 2021 06:48:12 GMT etag: - - '"1000f911-0000-3300-0000-60bc18010000"' + - '"010075b2-0000-3300-0000-60caf02c0000"' expires: - '-1' pragma: @@ -158,9 +253,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '34' + - '30' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -180,13 +275,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/listKeys?api-version=2021-04-30 response: body: - string: '{"key1":"27adcace9a0244d9a6b27fd62aa2f2f2","key2":"3b214e9704454ebea41ec6a118a80998"}' + string: '{"key1":"adf52f5807ef4feeaf66791ce5731aed","key2":"50cf9b145bc94ed684851d3d6d0c627e"}' headers: cache-control: - no-cache @@ -195,7 +289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:34:09 GMT + - Thu, 17 Jun 2021 06:48:13 GMT expires: - '-1' pragma: @@ -211,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '38' + - '42' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -235,13 +329,12 @@ interactions: ParameterSetName: - -n -g --key-name User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/regenerateKey?api-version=2021-04-30 response: body: - string: '{"key1":"7cd7f52a1d744abca83661b0fc30bea7","key2":"3b214e9704454ebea41ec6a118a80998"}' + string: '{"key1":"792ecb677e4a47d9bd11d9ec4aa842ae","key2":"50cf9b145bc94ed684851d3d6d0c627e"}' headers: cache-control: - no-cache @@ -250,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:34:10 GMT + - Thu, 17 Jun 2021 06:48:13 GMT expires: - '-1' pragma: @@ -266,7 +359,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '107' + - '99' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -286,22 +379,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts?api-version=2021-04-30 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":"\"1000fd11-0000-3300-0000-60bc18020000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"010079b2-0000-3300-0000-60caf02e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:12.7057996Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}]}' headers: cache-control: - no-cache content-length: - - '2686' + - '2396' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:34:10 GMT + - Thu, 17 Jun 2021 06:48:13 GMT expires: - '-1' pragma: @@ -317,7 +409,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '40' + - '21' status: code: 200 message: OK @@ -337,8 +429,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2021-04-30 response: @@ -350,7 +441,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:34:13 GMT + - Thu, 17 Jun 2021 06:48:17 GMT expires: - '-1' pragma: @@ -362,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '80' + - '87' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 b14cf2032b8..143c7f5587a 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes --custom-domain User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001e13-0000-3300-0000-60bc19330000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:14.5083564Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:14.5083564Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:39:14.9325476Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"0100a2b2-0000-3300-0000-60caf0830000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:49:38.9358985Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:49:38.9358985Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:49:39.6847813Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ae728ef5-1dfd-4beb-98be-e2dff5ef8cd4?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6491f5fe-8fb8-42fa-8136-769a6ad68faa?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2684' + - '2393' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:15 GMT + - Thu, 17 Jun 2021 06:49:40 GMT etag: - - '"10001e13-0000-3300-0000-60bc19330000"' + - '"0100a2b2-0000-3300-0000-60caf0830000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '948' + - '1583' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6491f5fe-8fb8-42fa-8136-769a6ad68faa?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/6491f5fe-8fb8-42fa-8136-769a6ad68faa","name":"6491f5fe-8fb8-42fa-8136-769a6ad68faa","status":"Succeeded","startTime":"2021-06-17T06:49:40Z","endTime":"2021-06-17T06:49:40Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:50:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '6' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100a3b2-0000-3300-0000-60caf0840000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:49:38.9358985Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:49:38.9358985Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:49:39.6847813Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2394' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:50:10 GMT + etag: + - '"0100a3b2-0000-3300-0000-60caf0840000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '9' + status: + code: 200 + message: OK - request: body: null headers: @@ -71,8 +168,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -84,7 +180,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:39:48 GMT + - Thu, 17 Jun 2021 06:50:13 GMT expires: - '-1' pragma: @@ -96,7 +192,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '83' + - '84' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -121,26 +217,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10004913-0000-3300-0000-60bc19560000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:50.1359784Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0100aab2-0000-3300-0000-60caf0a70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:50:15.569446Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:50:15.569446Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:50:15.781651Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/64272b51-bdf3-445d-b3ca-06593ebdf126?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/aa864be8-f647-41c3-a81d-dfe794b10751?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2637' + - '2343' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:50 GMT + - Thu, 17 Jun 2021 06:50:15 GMT etag: - - '"10004913-0000-3300-0000-60bc19560000"' + - '"0100aab2-0000-3300-0000-60caf0a70000"' expires: - '-1' pragma: @@ -152,12 +247,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '314' + - '304' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/aa864be8-f647-41c3-a81d-dfe794b10751?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/aa864be8-f647-41c3-a81d-dfe794b10751","name":"aa864be8-f647-41c3-a81d-dfe794b10751","status":"Succeeded","startTime":"2021-06-17T06:50:16Z","endTime":"2021-06-17T06:50:17Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:50:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100abb2-0000-3300-0000-60caf0a90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:50:15.569446Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:50:15.569446Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:50:15.781651Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2344' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:50:46 GMT + etag: + - '"0100abb2-0000-3300-0000-60caf0a90000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK - request: body: null headers: @@ -172,24 +365,23 @@ interactions: ParameterSetName: - -n -g --custom-domain User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10004b13-0000-3300-0000-60bc19570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:50.1359784Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100abb2-0000-3300-0000-60caf0a90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:50:15.569446Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:50:15.569446Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:50:15.781651Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2638' + - '2344' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:40:20 GMT + - Thu, 17 Jun 2021 06:50:47 GMT etag: - - '"10004b13-0000-3300-0000-60bc19570000"' + - '"0100abb2-0000-3300-0000-60caf0a90000"' expires: - '-1' pragma: @@ -205,7 +397,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '13' + - '11' status: code: 200 message: OK @@ -227,30 +419,29 @@ interactions: ParameterSetName: - -n -g --custom-domain User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10007a13-0000-3300-0000-60bc19760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:40:22.0260177Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000005.cognitiveservices.azure.com/"}}}' + 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":"\"0100c2b2-0000-3300-0000-60caf0c80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:50:15.569446Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:50:48.1700825Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T06:50:15.781651Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000005.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/3c07dc80-07ff-4688-80d7-4cdf0b071e19?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9b1fd430-8f56-4918-8969-2a69e9c818e8?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2684' + - '2391' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:40:22 GMT + - Thu, 17 Jun 2021 06:50:48 GMT etag: - - '"10007a13-0000-3300-0000-60bc19760000"' + - '"0100c2b2-0000-3300-0000-60caf0c80000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/3c07dc80-07ff-4688-80d7-4cdf0b071e19?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9b1fd430-8f56-4918-8969-2a69e9c818e8?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -260,12 +451,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1016' + - '850' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account update + Connection: + - keep-alive + ParameterSetName: + - -n -g --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9b1fd430-8f56-4918-8969-2a69e9c818e8?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9b1fd430-8f56-4918-8969-2a69e9c818e8","name":"9b1fd430-8f56-4918-8969-2a69e9c818e8","status":"Succeeded","startTime":"2021-06-17T06:50:49Z","endTime":"2021-06-17T06:50:49Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:51:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '55' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account update + Connection: + - keep-alive + ParameterSetName: + - -n -g --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100c3b2-0000-3300-0000-60caf0c90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:50:15.569446Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:50:48.1700825Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:50:15.781651Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000005","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000005.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '2392' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:51:18 GMT + etag: + - '"0100c3b2-0000-3300-0000-60caf0c90000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK - request: body: null headers: @@ -282,8 +571,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -295,7 +583,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:40:54 GMT + - Thu, 17 Jun 2021 06:51:21 GMT expires: - '-1' pragma: @@ -307,7 +595,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '77' + - '94' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 a8d7157ce05..69e7d94dbf0 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 @@ -19,26 +19,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --encryption --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00265a-0000-3300-0000-60b9942d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:07.4953226Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:07.4953226Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:47:08.9419381Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"a4c79407-23c5-4d45-806d-ed0ee7fa19d9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01001db2-0000-3300-0000-60caef190000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:32.827682Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:32.827682Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:37.0041892Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"0e0bad66-ee4b-4719-af4f-23ff84660ee4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/66fd1d59-96dc-4a7c-b06e-bc8b97473e07?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/27d22178-9998-4000-90c9-f99053a67bbb?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2862' + - '2569' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:47:08 GMT + - Thu, 17 Jun 2021 06:43:37 GMT etag: - - '"0d00265a-0000-3300-0000-60b9942d0000"' + - '"01001db2-0000-3300-0000-60caef190000"' expires: - '-1' pragma: @@ -50,12 +49,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '511' + - '431' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --assign-identity --encryption --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/27d22178-9998-4000-90c9-f99053a67bbb?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/27d22178-9998-4000-90c9-f99053a67bbb","name":"27d22178-9998-4000-90c9-f99053a67bbb","status":"Succeeded","startTime":"2021-06-17T06:43:37Z","endTime":"2021-06-17T06:43:37Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --assign-identity --encryption --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01001eb2-0000-3300-0000-60caef190000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:32.827682Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:32.827682Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:37.0041892Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"0e0bad66-ee4b-4719-af4f-23ff84660ee4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '2570' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:44:07 GMT + etag: + - '"01001eb2-0000-3300-0000-60caef190000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '17' + status: + code: 200 + message: OK - request: body: null headers: @@ -70,24 +167,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00295a-0000-3300-0000-60b9942d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:07.4953226Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:07.4953226Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:47:08.9419381Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"a4c79407-23c5-4d45-806d-ed0ee7fa19d9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01001eb2-0000-3300-0000-60caef190000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:32.827682Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:32.827682Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:37.0041892Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"0e0bad66-ee4b-4719-af4f-23ff84660ee4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2863' + - '2570' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:47:54 GMT + - Thu, 17 Jun 2021 06:44:08 GMT etag: - - '"0d00295a-0000-3300-0000-60b9942d0000"' + - '"01001eb2-0000-3300-0000-60caef190000"' expires: - '-1' pragma: @@ -103,7 +199,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '84' + - '14' status: code: 200 message: OK @@ -123,8 +219,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -136,7 +231,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 02:47:57 GMT + - Thu, 17 Jun 2021 06:44:10 GMT expires: - '-1' pragma: @@ -148,7 +243,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '121' + - '86' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -173,26 +268,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d006b5a-0000-3300-0000-60b994610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"010026b2-0000-3300-0000-60caef410000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:12.4765509Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1cfc86a5-0581-4e22-89e5-e374b14ca9e9?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/28c1b8b6-8282-4a02-a1f4-9d86f5af6f31?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2805' + - '2514' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:48:00 GMT + - Thu, 17 Jun 2021 06:44:17 GMT etag: - - '"0d006b5a-0000-3300-0000-60b994610000"' + - '"010026b2-0000-3300-0000-60caef410000"' expires: - '-1' pragma: @@ -204,7 +298,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '296' + - '304' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -214,34 +308,81 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/28c1b8b6-8282-4a02-a1f4-9d86f5af6f31?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/28c1b8b6-8282-4a02-a1f4-9d86f5af6f31","name":"28c1b8b6-8282-4a02-a1f4-9d86f5af6f31","status":"Succeeded","startTime":"2021-06-17T06:44:17Z","endTime":"2021-06-17T06:44:18Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:44:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '20' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --assign-identity --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00725a-0000-3300-0000-60b994620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"010029b2-0000-3300-0000-60caef420000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:12.4765509Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2806' + - '2515' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:48:31 GMT + - Thu, 17 Jun 2021 06:44:48 GMT etag: - - '"0d00725a-0000-3300-0000-60b994620000"' + - '"010029b2-0000-3300-0000-60caef420000"' expires: - '-1' pragma: @@ -257,7 +398,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '13' status: code: 200 message: OK @@ -275,24 +416,23 @@ interactions: ParameterSetName: - -n -g --encryption User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00725a-0000-3300-0000-60b994620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:47:59.6361734Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"010029b2-0000-3300-0000-60caef420000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:12.4765509Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2806' + - '2515' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:48:32 GMT + - Thu, 17 Jun 2021 06:44:48 GMT etag: - - '"0d00725a-0000-3300-0000-60b994620000"' + - '"010029b2-0000-3300-0000-60caef420000"' expires: - '-1' pragma: @@ -308,7 +448,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '14' + - '10' status: code: 200 message: OK @@ -330,30 +470,29 @@ interactions: ParameterSetName: - -n -g --encryption User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00955a-0000-3300-0000-60b994810000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:48:33.2797326Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01003bb2-0000-3300-0000-60caef610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:49.279948Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f74e2c0a-b84f-426a-8b53-fceeab4c0658?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/513ea0ee-af02-45a1-87bf-4b75ebb358d0?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2862' + - '2570' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:48:33 GMT + - Thu, 17 Jun 2021 06:44:49 GMT etag: - - '"0d00955a-0000-3300-0000-60b994810000"' + - '"01003bb2-0000-3300-0000-60caef610000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f74e2c0a-b84f-426a-8b53-fceeab4c0658?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/513ea0ee-af02-45a1-87bf-4b75ebb358d0?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -363,12 +502,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '418' + - '462' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account update + Connection: + - keep-alive + ParameterSetName: + - -n -g --encryption + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/513ea0ee-af02-45a1-87bf-4b75ebb358d0?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/513ea0ee-af02-45a1-87bf-4b75ebb358d0","name":"513ea0ee-af02-45a1-87bf-4b75ebb358d0","status":"Succeeded","startTime":"2021-06-17T06:44:49Z","endTime":"2021-06-17T06:44:50Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:45:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '6' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account update + Connection: + - keep-alive + ParameterSetName: + - -n -g --encryption + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01003cb2-0000-3300-0000-60caef620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:49.279948Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '2571' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:45:19 GMT + etag: + - '"01003cb2-0000-3300-0000-60caef620000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11' + status: + code: 200 + message: OK - request: body: null headers: @@ -383,24 +620,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00985a-0000-3300-0000-60b994820000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T02:47:59.6361734Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T02:48:33.2797326Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-04T02:48:00.9534108Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"9180ec45-48e1-4228-a03c-6865cd4e7393","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01003cb2-0000-3300-0000-60caef620000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:49.279948Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '2863' + - '2571' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 02:49:04 GMT + - Thu, 17 Jun 2021 06:45:20 GMT etag: - - '"0d00985a-0000-3300-0000-60b994820000"' + - '"01003cb2-0000-3300-0000-60caef620000"' expires: - '-1' pragma: @@ -416,7 +652,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12' + - '14' status: code: 200 message: OK @@ -436,8 +672,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -449,7 +684,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 02:49:06 GMT + - Thu, 17 Jun 2021 06:45:22 GMT expires: - '-1' pragma: @@ -461,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '114' + - '85' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 f078fdb003a..652486d9ed0 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000410d-0000-3300-0000-60bc12680000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0100ceb2-0000-3300-0000-60caf0ed0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:51:25.1033447Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93d44b97-9082-4221-bc4d-013e8112a2a3?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1470' + - '1471' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:10:16 GMT + - Thu, 17 Jun 2021 06:51:26 GMT etag: - - '"1000410d-0000-3300-0000-60bc12680000"' + - '"0100ceb2-0000-3300-0000-60caf0ed0000"' expires: - '-1' pragma: @@ -49,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '265' + - '416' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -59,34 +58,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35?api-version=2017-04-18 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":"\"1000570d-0000-3300-0000-60bc12880000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","name":"9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","status":"Creating","startTime":"2021-06-17T06:51:25Z"}' headers: cache-control: - no-cache content-length: - - '1470' + - '277' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:11:02 GMT - etag: - - '"1000570d-0000-3300-0000-60bc12880000"' + - Thu, 17 Jun 2021 06:51:56 GMT expires: - '-1' pragma: @@ -102,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '7' status: code: 200 message: OK @@ -110,34 +106,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35?api-version=2017-04-18 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":"\"1000570d-0000-3300-0000-60bc12880000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","name":"9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","status":"Creating","startTime":"2021-06-17T06:51:25Z"}' headers: cache-control: - no-cache content-length: - - '1470' + - '277' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:11:17 GMT - etag: - - '"1000570d-0000-3300-0000-60bc12880000"' + - Thu, 17 Jun 2021 06:52:26 GMT expires: - '-1' pragma: @@ -153,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '7' status: code: 200 message: OK @@ -161,34 +154,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35?api-version=2017-04-18 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":"\"10007f0d-0000-3300-0000-60bc12a70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","name":"9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","status":"Creating","startTime":"2021-06-17T06:51:25Z"}' headers: cache-control: - no-cache content-length: - - '1470' + - '277' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:11:33 GMT - etag: - - '"10007f0d-0000-3300-0000-60bc12a70000"' + - Thu, 17 Jun 2021 06:52:55 GMT expires: - '-1' pragma: @@ -204,7 +194,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '7' status: code: 200 message: OK @@ -212,34 +202,81 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","name":"9857bf66-a7a6-48e3-8dfa-6c445f5dbe35","status":"Succeeded","startTime":"2021-06-17T06:51:25Z","endTime":"2021-06-17T06:53:04Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:53:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '6' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10007f0d-0000-3300-0000-60bc12a70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"}}' + 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":"\"0100ecb2-0000-3300-0000-60caf1500000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:51:25.1033447Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1470' + - '1472' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:11:48 GMT + - Thu, 17 Jun 2021 06:53:26 GMT etag: - - '"10007f0d-0000-3300-0000-60bc12a70000"' + - '"0100ecb2-0000-3300-0000-60caf1500000"' expires: - '-1' pragma: @@ -273,24 +310,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000a50d-0000-3300-0000-60bc12cb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100ecb2-0000-3300-0000-60caf1500000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:51:25.1033447Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1471' + - '1472' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:03 GMT + - Thu, 17 Jun 2021 06:53:27 GMT etag: - - '"1000a50d-0000-3300-0000-60bc12cb0000"' + - '"0100ecb2-0000-3300-0000-60caf1500000"' expires: - '-1' pragma: @@ -306,7 +342,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '13' status: code: 200 message: OK @@ -324,24 +360,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000a50d-0000-3300-0000-60bc12cb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:10:16.0822108Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100ecb2-0000-3300-0000-60caf1500000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:51:25.1033447Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1471' + - '1472' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:03 GMT + - Thu, 17 Jun 2021 06:53:27 GMT etag: - - '"1000a50d-0000-3300-0000-60bc12cb0000"' + - '"0100ecb2-0000-3300-0000-60caf1500000"' expires: - '-1' pragma: @@ -357,7 +392,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '28' status: code: 200 message: OK @@ -379,30 +414,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000ad0d-0000-3300-0000-60bc12d60000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:06.4522253Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"2127fbc6-90e6-4cf5-8b62-96d285a258c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0100f5b2-0000-3300-0000-60caf16b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:53:31.7010716Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"5ed0cce3-80f2-4e71-89f2-8a4712142151","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0717f51b-6966-4dbc-b496-100545b790d4?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/21e6c411-c60c-4a7d-8c25-c311e5ff40d3?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1638' + - '1639' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:05 GMT + - Thu, 17 Jun 2021 06:53:34 GMT etag: - - '"1000ad0d-0000-3300-0000-60bc12d60000"' + - '"0100f5b2-0000-3300-0000-60caf16b0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0717f51b-6966-4dbc-b496-100545b790d4?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/21e6c411-c60c-4a7d-8c25-c311e5ff40d3?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -412,12 +446,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '125' + - '1946' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/21e6c411-c60c-4a7d-8c25-c311e5ff40d3?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/21e6c411-c60c-4a7d-8c25-c311e5ff40d3","name":"21e6c411-c60c-4a7d-8c25-c311e5ff40d3","status":"Succeeded","startTime":"2021-06-17T06:53:33Z","endTime":"2021-06-17T06:53:35Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:54:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '49' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100f7b2-0000-3300-0000-60caf16f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:53:31.7010716Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"5ed0cce3-80f2-4e71-89f2-8a4712142151","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '1640' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:54:03 GMT + etag: + - '"0100f7b2-0000-3300-0000-60caf16f0000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK - request: body: null headers: @@ -432,24 +564,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000af0d-0000-3300-0000-60bc12d70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:06.4522253Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"2127fbc6-90e6-4cf5-8b62-96d285a258c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"0100f7b2-0000-3300-0000-60caf16f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:53:31.7010716Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"5ed0cce3-80f2-4e71-89f2-8a4712142151","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1639' + - '1640' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:37 GMT + - Thu, 17 Jun 2021 06:54:04 GMT etag: - - '"1000af0d-0000-3300-0000-60bc12d70000"' + - '"0100f7b2-0000-3300-0000-60caf16f0000"' expires: - '-1' pragma: @@ -465,7 +596,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '16' status: code: 200 message: OK @@ -487,30 +618,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cb0d-0000-3300-0000-60bc12f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' + 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":"\"01003ab3-0000-3300-0000-60caf2420000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:57:06.3562317Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5c32355c-905d-46c9-9ac1-e903ff17b285?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/cb532a58-b0fb-4819-b680-23f312436b0b?api-version=2017-04-18 cache-control: - no-cache content-length: - - '1525' + - '1526' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:39 GMT + - Thu, 17 Jun 2021 06:57:06 GMT etag: - - '"1000cb0d-0000-3300-0000-60bc12f70000"' + - '"01003ab3-0000-3300-0000-60caf2420000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5c32355c-905d-46c9-9ac1-e903ff17b285?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/cb532a58-b0fb-4819-b680-23f312436b0b?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -520,7 +650,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '104' + - '269' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -540,24 +670,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cb0d-0000-3300-0000-60bc12f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' + 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":"\"01003ab3-0000-3300-0000-60caf2420000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:57:06.3562317Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1526' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:12:39 GMT + - Thu, 17 Jun 2021 06:57:06 GMT etag: - - '"1000cb0d-0000-3300-0000-60bc12f70000"' + - '"01003ab3-0000-3300-0000-60caf2420000"' expires: - '-1' pragma: @@ -577,6 +706,104 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/cb532a58-b0fb-4819-b680-23f312436b0b?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/cb532a58-b0fb-4819-b680-23f312436b0b","name":"cb532a58-b0fb-4819-b680-23f312436b0b","status":"Succeeded","startTime":"2021-06-17T06:57:06Z","endTime":"2021-06-17T06:57:13Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:57:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '74' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01003bb3-0000-3300-0000-60caf2490000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:51:25.1033447Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:57:06.3562317Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:51:25.3199783Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '1527' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:57:36 GMT + etag: + - '"01003bb3-0000-3300-0000-60caf2490000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '14' + status: + code: 200 + message: OK - request: body: null headers: @@ -593,8 +820,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -606,7 +832,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:12:42 GMT + - Thu, 17 Jun 2021 06:59:09 GMT expires: - '-1' pragma: @@ -618,9 +844,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '95' + - '90' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK 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 c4f29f87398..32366dca628 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 @@ -18,16 +18,15 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00565e-0000-3300-0000-60b999600000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"010058b3-0000-3300-0000-60caf2c40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:59:13.1015485Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:59:13.1015485Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:59:16.6717249Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"f556896c-329b-4f99-b4c3-9f99c79704bd","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40df3cae-7130-44af-a355-27814435904e?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc?api-version=2017-04-18 cache-control: - no-cache content-length: @@ -35,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:09:19 GMT + - Thu, 17 Jun 2021 06:59:17 GMT etag: - - '"0d00565e-0000-3300-0000-60b999600000"' + - '"010058b3-0000-3300-0000-60caf2c40000"' expires: - '-1' pragma: @@ -49,9 +48,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '561' + - '389' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -59,34 +58,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc?api-version=2017-04-18 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":"\"0d006f5e-0000-3300-0000-60b999800000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc","name":"58af90b2-63bb-4307-b68d-5514306d2dcc","status":"Creating","startTime":"2021-06-17T06:59:16Z"}' headers: cache-control: - no-cache content-length: - - '1639' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:10:05 GMT - etag: - - '"0d006f5e-0000-3300-0000-60b999800000"' + - Thu, 17 Jun 2021 06:59:46 GMT expires: - '-1' pragma: @@ -102,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '15' + - '11' status: code: 200 message: OK @@ -110,34 +106,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc?api-version=2017-04-18 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":"\"0d006f5e-0000-3300-0000-60b999800000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc","name":"58af90b2-63bb-4307-b68d-5514306d2dcc","status":"Creating","startTime":"2021-06-17T06:59:16Z"}' headers: cache-control: - no-cache content-length: - - '1639' + - '277' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:10:21 GMT - etag: - - '"0d006f5e-0000-3300-0000-60b999800000"' + - Thu, 17 Jun 2021 07:00:17 GMT expires: - '-1' pragma: @@ -153,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '71' status: code: 200 message: OK @@ -161,34 +154,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc?api-version=2017-04-18 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":"\"0d00765e-0000-3300-0000-60b9999e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/58af90b2-63bb-4307-b68d-5514306d2dcc","name":"58af90b2-63bb-4307-b68d-5514306d2dcc","status":"Succeeded","startTime":"2021-06-17T06:59:16Z","endTime":"2021-06-17T07:00:25Z"}' headers: cache-control: - no-cache content-length: - - '1639' + - '311' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:10:36 GMT - etag: - - '"0d00765e-0000-3300-0000-60b9999e0000"' + - Thu, 17 Jun 2021 07:00:47 GMT expires: - '-1' pragma: @@ -204,7 +194,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '5' status: code: 200 message: OK @@ -212,34 +202,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d00765e-0000-3300-0000-60b9999e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01006fb3-0000-3300-0000-60caf3090000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:59:13.1015485Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:59:13.1015485Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:59:16.6717249Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"f556896c-329b-4f99-b4c3-9f99c79704bd","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '1639' + - '1640' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:10:52 GMT + - Thu, 17 Jun 2021 07:00:47 GMT etag: - - '"0d00765e-0000-3300-0000-60b9999e0000"' + - '"01006fb3-0000-3300-0000-60caf3090000"' expires: - '-1' pragma: @@ -255,7 +244,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '9' status: code: 200 message: OK @@ -273,13 +262,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"0d009f5e-0000-3300-0000-60b999bc0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T03:09:18.9580171Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T03:09:18.9580171Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-04T03:09:20.0161274Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"d317ebd1-fd92-4315-b9ed-d9c471da19a6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + 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":"\"01006fb3-0000-3300-0000-60caf3090000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:59:13.1015485Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:59:13.1015485Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:59:16.6717249Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"f556896c-329b-4f99-b4c3-9f99c79704bd","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache @@ -288,9 +276,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 03:11:07 GMT + - Thu, 17 Jun 2021 07:00:47 GMT etag: - - '"0d009f5e-0000-3300-0000-60b999bc0000"' + - '"01006fb3-0000-3300-0000-60caf3090000"' expires: - '-1' pragma: @@ -306,7 +294,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '15' status: code: 200 message: OK @@ -326,8 +314,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -339,7 +326,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 03:11:10 GMT + - Thu, 17 Jun 2021 07:00:50 GMT expires: - '-1' pragma: @@ -351,7 +338,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '86' + - '166' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 7fec3b2a5e3..6663b5596af 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 @@ -13,15 +13,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-06-06T00:27:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-06-17T07:00:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:09 GMT + - Thu, 17 Jun 2021 07:00:52 GMT expires: - '-1' pragma: @@ -59,23 +56,20 @@ interactions: Content-Length: - '123' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"7758b257-e09e-4c99-804d-5f3367a3b040\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"736a7990-6e33-4546-adec-f3ab4925d023\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -84,7 +78,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7817497f-039d-46ab-a50d-54092dfe1008?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7eae8c34-27ea-48dd-8ca6-062d7d72b294?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -92,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:11 GMT + - Thu, 17 Jun 2021 07:00:55 GMT expires: - '-1' pragma: @@ -105,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e253790-8b41-432e-8208-19e5682e601a + - f9eeaab0-9c0c-4ee9-9dbc-f1a8af865b86 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -115,7 +109,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -125,10 +119,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7817497f-039d-46ab-a50d-54092dfe1008?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7eae8c34-27ea-48dd-8ca6-062d7d72b294?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -140,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:15 GMT + - Thu, 17 Jun 2021 07:00:58 GMT expires: - '-1' pragma: @@ -157,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f1255fb-358a-4345-850b-1a81e67065ec + - 81a59343-7c26-4e84-b261-efe72f7e8050 status: code: 200 message: OK @@ -165,7 +158,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -175,17 +168,16 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"8d873f2f-6788-41e2-9212-3207d740000f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e8984ad6-84ac-479c-a161-a493b3a04b17\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -198,9 +190,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:15 GMT + - Thu, 17 Jun 2021 07:00:58 GMT etag: - - W/"8d873f2f-6788-41e2-9212-3207d740000f" + - W/"e8984ad6-84ac-479c-a161-a493b3a04b17" expires: - '-1' pragma: @@ -217,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5decb8e-2548-431d-af6f-5e7a0439872b + - 63f32d88-3844-471d-bcc7-b7694e35b061 status: code: 200 message: OK @@ -235,19 +227,16 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"8d873f2f-6788-41e2-9212-3207d740000f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e8984ad6-84ac-479c-a161-a493b3a04b17\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -260,9 +249,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:14 GMT + - Thu, 17 Jun 2021 07:00:58 GMT etag: - - W/"8d873f2f-6788-41e2-9212-3207d740000f" + - W/"e8984ad6-84ac-479c-a161-a493b3a04b17" expires: - '-1' pragma: @@ -279,15 +268,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22414b6a-65da-46b9-b2ae-a57d81aff27c + - 5c91c23c-1bc1-4eae-8582-da54d7d171ff status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -299,30 +289,27 @@ interactions: Connection: - keep-alive Content-Length: - - '495' + - '588' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"41735504-7f0d-41a7-8841-18c23fe07fed\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5a97f5fd-ffc3-424e-8686-a08c115be47b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"41735504-7f0d-41a7-8841-18c23fe07fed\\\"\",\r\n + \ \"etag\": \"W/\\\"5a97f5fd-ffc3-424e-8686-a08c115be47b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -331,7 +318,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03dbfe2e-bc86-45f5-9488-ca42b43549ee?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4af75e6-0e0c-4768-948a-f74973414dc3?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -339,7 +326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:15 GMT + - Thu, 17 Jun 2021 07:00:59 GMT expires: - '-1' pragma: @@ -356,7 +343,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4632c9f8-6421-413c-b185-1092236195c9 + - 73292aa7-dec5-4947-85f9-4a7a2ab4015e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -366,7 +353,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -376,10 +363,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/03dbfe2e-bc86-45f5-9488-ca42b43549ee?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a4af75e6-0e0c-4768-948a-f74973414dc3?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -391,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:18 GMT + - Thu, 17 Jun 2021 07:01:02 GMT expires: - '-1' pragma: @@ -408,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ced217c-4d87-4d1c-9971-8043388ad1f5 + - 17c0c3ae-ea5a-4b6e-8965-ef6f50414e13 status: code: 200 message: OK @@ -416,7 +402,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -426,22 +412,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"978c1762-1abf-4280-a0ad-d483aed853f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n + \ \"etag\": \"W/\\\"978c1762-1abf-4280-a0ad-d483aed853f6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -456,9 +441,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:18 GMT + - Thu, 17 Jun 2021 07:01:02 GMT etag: - - W/"5825f420-a002-4198-8c9d-450072942faa" + - W/"978c1762-1abf-4280-a0ad-d483aed853f6" expires: - '-1' pragma: @@ -475,7 +460,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 34a32e08-6e3b-4f25-9fbf-3b0fad73b99e + - 3350bc27-e2c2-4787-a172-0535a1dd29bd status: code: 200 message: OK @@ -493,24 +478,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"978c1762-1abf-4280-a0ad-d483aed853f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5825f420-a002-4198-8c9d-450072942faa\\\"\",\r\n + \ \"etag\": \"W/\\\"978c1762-1abf-4280-a0ad-d483aed853f6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -525,9 +507,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:19 GMT + - Thu, 17 Jun 2021 07:01:03 GMT etag: - - W/"5825f420-a002-4198-8c9d-450072942faa" + - W/"978c1762-1abf-4280-a0ad-d483aed853f6" expires: - '-1' pragma: @@ -544,7 +526,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04c42122-a8cd-4f17-a021-e7040c8a4e4f + - 5387f3ec-53d9-4a82-a08d-0124e70a4214 status: code: 200 message: OK @@ -552,9 +534,11 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}, - {"properties": {"addressPrefix": "10.0.1.0/24"}, "name": "subnet"}], "virtualNetworkPeerings": + "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}, {"name": "subnet", + "properties": {"addressPrefix": "10.0.1.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -566,36 +550,33 @@ interactions: Connection: - keep-alive Content-Length: - - '904' + - '1050' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"12ccfb9e-d493-4756-9f9f-bd19a0515f03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n + \ \"etag\": \"W/\\\"12ccfb9e-d493-4756-9f9f-bd19a0515f03\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet\",\r\n - \ \"etag\": \"W/\\\"f57d2ae4-e633-479d-a923-26018dcf2fd5\\\"\",\r\n + \ \"etag\": \"W/\\\"12ccfb9e-d493-4756-9f9f-bd19a0515f03\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -604,7 +585,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dce76f6-ac5e-4c2e-af6d-e3eb84053333?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/851b0434-e5cb-411c-8e47-897bc28b6202?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -612,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:20 GMT + - Thu, 17 Jun 2021 07:01:04 GMT expires: - '-1' pragma: @@ -629,7 +610,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a102700-f3a1-4af0-b127-efc25780894b + - 9eb5958e-f210-43e2-89c5-45628e3458c3 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -639,7 +620,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -649,10 +630,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1dce76f6-ac5e-4c2e-af6d-e3eb84053333?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/851b0434-e5cb-411c-8e47-897bc28b6202?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -664,7 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:24 GMT + - Thu, 17 Jun 2021 07:01:07 GMT expires: - '-1' pragma: @@ -681,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a7de0dfa-9a85-4dd5-a49a-927db9bffed7 + - 08968bb7-efed-4793-8e5a-855b6a6eaa49 status: code: 200 message: OK @@ -689,7 +669,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -699,28 +679,27 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9f686003-984d-4d62-a6fb-6db2012b9cbb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d223f92f-941b-40c8-89ed-0fb966c14225\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"29197348-2279-402d-9d35-524b69c63e7c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n + \ \"etag\": \"W/\\\"9f686003-984d-4d62-a6fb-6db2012b9cbb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet\",\r\n - \ \"etag\": \"W/\\\"9b35ba30-c205-4ed8-98d0-5ff51d73fb40\\\"\",\r\n + \ \"etag\": \"W/\\\"9f686003-984d-4d62-a6fb-6db2012b9cbb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -735,9 +714,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:24 GMT + - Thu, 17 Jun 2021 07:01:07 GMT etag: - - W/"9b35ba30-c205-4ed8-98d0-5ff51d73fb40" + - W/"9f686003-984d-4d62-a6fb-6db2012b9cbb" expires: - '-1' pragma: @@ -754,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45985355-e1a9-4c87-84f2-f024de19daa8 + - 4390bb60-5292-4735-89d8-0e32e595a8d8 status: code: 200 message: OK @@ -777,26 +756,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000b510-0000-3300-0000-60bc166e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"010077b3-0000-3300-0000-60caf3360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:09.2286771Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/1612b761-6854-43e0-865e-0b574e664d4e?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2a6d8e86-6a10-45c8-a8e8-26e1c013d021?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2684' + - '2393' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:26 GMT + - Thu, 17 Jun 2021 07:01:11 GMT etag: - - '"1000b510-0000-3300-0000-60bc166e0000"' + - '"010077b3-0000-3300-0000-60caf3360000"' expires: - '-1' pragma: @@ -808,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1495' + - '1292' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -818,34 +796,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2a6d8e86-6a10-45c8-a8e8-26e1c013d021?api-version=2017-04-18 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":"\"1000bb10-0000-3300-0000-60bc16700000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2a6d8e86-6a10-45c8-a8e8-26e1c013d021","name":"2a6d8e86-6a10-45c8-a8e8-26e1c013d021","status":"Succeeded","startTime":"2021-06-17T07:01:10Z","endTime":"2021-06-17T07:01:11Z"}' headers: cache-control: - no-cache content-length: - - '2685' + - '311' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:57 GMT - etag: - - '"1000bb10-0000-3300-0000-60bc16700000"' + - Thu, 17 Jun 2021 07:01:40 GMT expires: - '-1' pragma: @@ -861,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '7' status: code: 200 message: OK @@ -869,34 +844,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account create Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000bb10-0000-3300-0000-60bc16700000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:25.6346111Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"010078b3-0000-3300-0000-60caf3370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:09.2286771Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2685' + - '2394' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:27:57 GMT + - Thu, 17 Jun 2021 07:01:40 GMT etag: - - '"1000bb10-0000-3300-0000-60bc16700000"' + - '"010078b3-0000-3300-0000-60caf3370000"' expires: - '-1' pragma: @@ -912,68 +886,10 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '11' status: code: 200 message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}], "virtualNetworkRules": []}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"1000ca10-0000-3300-0000-60bc168e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93777fe2-e1be-4d63-a4c0-40dadcb3af72?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '2781' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 06 Jun 2021 00:27:59 GMT - etag: - - '"1000ca10-0000-3300-0000-60bc168e0000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93777fe2-e1be-4d63-a4c0-40dadcb3af72?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '122' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -988,24 +904,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cb10-0000-3300-0000-60bc168f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010078b3-0000-3300-0000-60caf3370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:09.2286771Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2782' + - '2394' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:28:30 GMT + - Thu, 17 Jun 2021 07:01:41 GMT etag: - - '"1000cb10-0000-3300-0000-60bc168f0000"' + - '"010078b3-0000-3300-0000-60caf3370000"' expires: - '-1' pragma: @@ -1021,7 +936,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '12' status: code: 200 message: OK @@ -1039,24 +954,23 @@ interactions: ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cb10-0000-3300-0000-60bc168f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:27:58.913813Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010078b3-0000-3300-0000-60caf3370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:09.2286771Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2782' + - '2394' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:28:29 GMT + - Thu, 17 Jun 2021 07:01:42 GMT etag: - - '"1000cb10-0000-3300-0000-60bc168f0000"' + - '"010078b3-0000-3300-0000-60caf3370000"' expires: - '-1' pragma: @@ -1072,13 +986,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '17' status: code: 200 message: OK - request: body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' + "200.0.0.1"}], "virtualNetworkRules": []}}}' headers: Accept: - application/json @@ -1089,36 +1003,35 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '122' Content-Type: - application/json ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000df10-0000-3300-0000-60bc16b00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"01007cb3-0000-3300-0000-60caf3570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:43.1697045Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/920b7fa5-9f02-4b39-ab71-032ebc3e6f45?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/739b0776-8936-4564-b704-4d3a1d313417?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2807' + - '2491' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:28:33 GMT + - Thu, 17 Jun 2021 07:01:43 GMT etag: - - '"1000df10-0000-3300-0000-60bc16b00000"' + - '"01007cb3-0000-3300-0000-60caf3570000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/920b7fa5-9f02-4b39-ab71-032ebc3e6f45?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/739b0776-8936-4564-b704-4d3a1d313417?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1128,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '122' + - '113' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1138,34 +1051,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/739b0776-8936-4564-b704-4d3a1d313417?api-version=2017-04-18 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":"\"1000e010-0000-3300-0000-60bc16b10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/739b0776-8936-4564-b704-4d3a1d313417","name":"739b0776-8936-4564-b704-4d3a1d313417","status":"Succeeded","startTime":"2021-06-17T07:01:43Z","endTime":"2021-06-17T07:01:44Z"}' headers: cache-control: - no-cache content-length: - - '2808' + - '311' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:29:02 GMT - etag: - - '"1000e010-0000-3300-0000-60bc16b10000"' + - Thu, 17 Jun 2021 07:02:13 GMT expires: - '-1' pragma: @@ -1181,7 +1091,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12' + - '13' status: code: 200 message: OK @@ -1189,7 +1099,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1197,26 +1107,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --subnet + - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000e010-0000-3300-0000-60bc16b10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:28:32.3825186Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"01007db3-0000-3300-0000-60caf3580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:43.1697045Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '2808' + - '2492' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:29:03 GMT + - Thu, 17 Jun 2021 07:02:13 GMT etag: - - '"1000e010-0000-3300-0000-60bc16b10000"' + - '"01007db3-0000-3300-0000-60caf3580000"' expires: - '-1' pragma: @@ -1232,69 +1141,10 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '11' status: code: 200 message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "ignoreMissingVnetServiceEndpoint": true}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule add - Connection: - - keep-alive - Content-Length: - - '420' - Content-Type: - - application/json - ParameterSetName: - - -n -g --subnet - User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"1000f710-0000-3300-0000-60bc16d00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3acd72b-38a3-42f2-9e4c-2ff3404b8671?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '3075' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 06 Jun 2021 00:29:07 GMT - etag: - - '"1000f710-0000-3300-0000-60bc16d00000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e3acd72b-38a3-42f2-9e4c-2ff3404b8671?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '2853' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1309,24 +1159,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000f810-0000-3300-0000-60bc16d50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"01007db3-0000-3300-0000-60caf3580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:43.1697045Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3076' + - '2492' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:29:38 GMT + - Thu, 17 Jun 2021 07:02:14 GMT etag: - - '"1000f810-0000-3300-0000-60bc16d50000"' + - '"01007db3-0000-3300-0000-60caf3580000"' expires: - '-1' pragma: @@ -1342,7 +1191,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '13' status: code: 200 message: OK @@ -1358,26 +1207,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --subnet --vnet-name + - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000f810-0000-3300-0000-60bc16d50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:04.6912205Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"01007db3-0000-3300-0000-60caf3580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:01:43.1697045Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3076' + - '2492' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:29:38 GMT + - Thu, 17 Jun 2021 07:02:14 GMT etag: - - '"1000f810-0000-3300-0000-60bc16d50000"' + - '"01007db3-0000-3300-0000-60caf3580000"' expires: - '-1' pragma: @@ -1399,9 +1247,7 @@ interactions: message: OK - request: body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "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}]}}}' + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' headers: Accept: - application/json @@ -1412,36 +1258,35 @@ interactions: Connection: - keep-alive Content-Length: - - '692' + - '149' Content-Type: - application/json ParameterSetName: - - -n -g --subnet --vnet-name + - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001111-0000-3300-0000-60bc16f30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010083b3-0000-3300-0000-60caf3770000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:15.6552142Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2d5eeef3-47ff-4496-9aa1-084dfa5a9d70?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d32442e6-8228-4f0a-967b-dd9e554bfc68?api-version=2017-04-18 cache-control: - no-cache content-length: - - '3343' + - '2516' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:29:40 GMT + - Thu, 17 Jun 2021 07:02:16 GMT etag: - - '"10001111-0000-3300-0000-60bc16f30000"' + - '"010083b3-0000-3300-0000-60caf3770000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/2d5eeef3-47ff-4496-9aa1-084dfa5a9d70?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d32442e6-8228-4f0a-967b-dd9e554bfc68?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1451,9 +1296,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '757' + - '228' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1461,34 +1306,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d32442e6-8228-4f0a-967b-dd9e554bfc68?api-version=2017-04-18 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":"\"10001211-0000-3300-0000-60bc16f40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d32442e6-8228-4f0a-967b-dd9e554bfc68","name":"d32442e6-8228-4f0a-967b-dd9e554bfc68","status":"Succeeded","startTime":"2021-06-17T07:02:15Z","endTime":"2021-06-17T07:02:17Z"}' headers: cache-control: - no-cache content-length: - - '3344' + - '311' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:30:11 GMT - etag: - - '"10001211-0000-3300-0000-60bc16f40000"' + - Thu, 17 Jun 2021 07:02:46 GMT expires: - '-1' pragma: @@ -1504,7 +1346,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '91' status: code: 200 message: OK @@ -1512,34 +1354,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - -n -g --ip-address User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001211-0000-3300-0000-60bc16f40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:29:39.6734782Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010085b3-0000-3300-0000-60caf3790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:15.6552142Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3344' + - '2517' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:30:11 GMT + - Thu, 17 Jun 2021 07:02:46 GMT etag: - - '"10001211-0000-3300-0000-60bc16f40000"' + - '"010085b3-0000-3300-0000-60caf3790000"' expires: - '-1' pragma: @@ -1555,70 +1396,10 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '10' status: code: 200 message: OK -- request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "100.0.0.0/24"}], "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}]}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account network-rule remove - Connection: - - keep-alive - Content-Length: - - '668' - Content-Type: - - application/json - ParameterSetName: - - -n -g --ip-address - User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) - 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=2021-04-30 - 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":"\"10002211-0000-3300-0000-60bc17140000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40488951-3f81-4ef3-9638-6208799ef62e?api-version=2017-04-18 - cache-control: - - no-cache - content-length: - - '3321' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 06 Jun 2021 00:30:13 GMT - etag: - - '"10002211-0000-3300-0000-60bc17140000"' - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/40488951-3f81-4ef3-9638-6208799ef62e?api-version=2017-04-18&operationResultResponseType=Location - pragma: - - no-cache - server: - - istio-envoy - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-envoy-upstream-service-time: - - '1174' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1633,24 +1414,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10002511-0000-3300-0000-60bc17160000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010085b3-0000-3300-0000-60caf3790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:15.6552142Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3322' + - '2517' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:30:44 GMT + - Thu, 17 Jun 2021 07:02:46 GMT etag: - - '"10002511-0000-3300-0000-60bc17160000"' + - '"010085b3-0000-3300-0000-60caf3790000"' expires: - '-1' pragma: @@ -1666,7 +1446,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '11' status: code: 200 message: OK @@ -1678,30 +1458,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g --ip-address + - -n -g --subnet User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10002511-0000-3300-0000-60bc17160000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:12.4900681Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010085b3-0000-3300-0000-60caf3790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:15.6552142Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3322' + - '2517' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:30:44 GMT + - Thu, 17 Jun 2021 07:02:47 GMT etag: - - '"10002511-0000-3300-0000-60bc17160000"' + - '"010085b3-0000-3300-0000-60caf3790000"' expires: - '-1' pragma: @@ -1717,14 +1496,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '10' status: code: 200 message: OK - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], - "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", + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", "ignoreMissingVnetServiceEndpoint": true}]}}}' headers: Accept: @@ -1732,40 +1510,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive Content-Length: - - '643' + - '420' Content-Type: - application/json ParameterSetName: - - -n -g --ip-address + - -n -g --subnet User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10005111-0000-3300-0000-60bc17350000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010095b3-0000-3300-0000-60caf3980000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:48.2564526Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f61d7d99-3be9-43f3-8c1f-f8850b299d31?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/68f119ae-e256-41f4-bad8-6d6901359060?api-version=2017-04-18 cache-control: - no-cache content-length: - - '3297' + - '2784' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:30:47 GMT + - Thu, 17 Jun 2021 07:03:01 GMT etag: - - '"10005111-0000-3300-0000-60bc17350000"' + - '"010095b3-0000-3300-0000-60caf3980000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f61d7d99-3be9-43f3-8c1f-f8850b299d31?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/68f119ae-e256-41f4-bad8-6d6901359060?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -1775,7 +1552,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1102' + - '12318' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1785,34 +1562,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --subnet User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/68f119ae-e256-41f4-bad8-6d6901359060?api-version=2017-04-18 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":"\"10005211-0000-3300-0000-60bc17370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/68f119ae-e256-41f4-bad8-6d6901359060","name":"68f119ae-e256-41f4-bad8-6d6901359060","status":"Succeeded","startTime":"2021-06-17T07:03:00Z","endTime":"2021-06-17T07:03:00Z"}' headers: cache-control: - no-cache content-length: - - '3298' + - '311' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:17 GMT - etag: - - '"10005211-0000-3300-0000-60bc17370000"' + - Thu, 17 Jun 2021 07:03:30 GMT expires: - '-1' pragma: @@ -1828,7 +1602,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '43' status: code: 200 message: OK @@ -1836,34 +1610,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - -n -g --subnet User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10005211-0000-3300-0000-60bc17370000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:30:45.9245594Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"010097b3-0000-3300-0000-60caf3a40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:48.2564526Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3298' + - '2785' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:18 GMT + - Thu, 17 Jun 2021 07:03:30 GMT etag: - - '"10005211-0000-3300-0000-60bc17370000"' + - '"010097b3-0000-3300-0000-60caf3a40000"' expires: - '-1' pragma: @@ -1884,64 +1657,1032 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], - "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet", + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"010097b3-0000-3300-0000-60caf3a40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:48.2564526Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '2785' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:03:31 GMT + etag: + - '"010097b3-0000-3300-0000-60caf3a40000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '12' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"010097b3-0000-3300-0000-60caf3a40000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:02:48.2564526Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '2785' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:03:32 GMT + etag: + - '"010097b3-0000-3300-0000-60caf3a40000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '16' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "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}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + Content-Length: + - '692' + Content-Type: + - application/json + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01009bb3-0000-3300-0000-60caf3c50000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:03:33.2287225Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8f9378b9-d418-4f7b-9d0a-b90f2047d03c?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '3052' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:03:44 GMT + etag: + - '"01009bb3-0000-3300-0000-60caf3c50000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8f9378b9-d418-4f7b-9d0a-b90f2047d03c?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11267' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8f9378b9-d418-4f7b-9d0a-b90f2047d03c?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8f9378b9-d418-4f7b-9d0a-b90f2047d03c","name":"8f9378b9-d418-4f7b-9d0a-b90f2047d03c","status":"Succeeded","startTime":"2021-06-17T07:03:44Z","endTime":"2021-06-17T07:03:45Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '96' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule add + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01009cb3-0000-3300-0000-60caf3d10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:03:33.2287225Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3053' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:15 GMT + etag: + - '"01009cb3-0000-3300-0000-60caf3d10000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01009cb3-0000-3300-0000-60caf3d10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:03:33.2287225Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3053' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:16 GMT + etag: + - '"01009cb3-0000-3300-0000-60caf3d10000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '12' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01009cb3-0000-3300-0000-60caf3d10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:03:33.2287225Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3053' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:15 GMT + etag: + - '"01009cb3-0000-3300-0000-60caf3d10000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "100.0.0.0/24"}], "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}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + Content-Length: + - '668' + Content-Type: + - application/json + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100a2b3-0000-3300-0000-60caf3f10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:17.1523299Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8331f8ee-bef5-4393-a502-b5b8180c74eb?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '3030' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:18 GMT + etag: + - '"0100a2b3-0000-3300-0000-60caf3f10000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8331f8ee-bef5-4393-a502-b5b8180c74eb?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '1178' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8331f8ee-bef5-4393-a502-b5b8180c74eb?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/8331f8ee-bef5-4393-a502-b5b8180c74eb","name":"8331f8ee-bef5-4393-a502-b5b8180c74eb","status":"Succeeded","startTime":"2021-06-17T07:04:18Z","endTime":"2021-06-17T07:04:19Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100a5b3-0000-3300-0000-60caf3f30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:17.1523299Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3031' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:49 GMT + etag: + - '"0100a5b3-0000-3300-0000-60caf3f30000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100a5b3-0000-3300-0000-60caf3f30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:17.1523299Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3031' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:49 GMT + etag: + - '"0100a5b3-0000-3300-0000-60caf3f30000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '14' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100a5b3-0000-3300-0000-60caf3f30000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:17.1523299Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3031' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:50 GMT + etag: + - '"0100a5b3-0000-3300-0000-60caf3f30000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '15' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], + "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}]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + Content-Length: + - '643' + Content-Type: + - application/json + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100b7b3-0000-3300-0000-60caf4120000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:50.6640876Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/635ee832-a0c2-4cd8-8dfe-80dd12201424?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '3006' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:04:52 GMT + etag: + - '"0100b7b3-0000-3300-0000-60caf4120000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/635ee832-a0c2-4cd8-8dfe-80dd12201424?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '1037' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/635ee832-a0c2-4cd8-8dfe-80dd12201424?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/635ee832-a0c2-4cd8-8dfe-80dd12201424","name":"635ee832-a0c2-4cd8-8dfe-80dd12201424","status":"Succeeded","startTime":"2021-06-17T07:04:51Z","endTime":"2021-06-17T07:04:52Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '8' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --ip-address + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100b8b3-0000-3300-0000-60caf4140000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:50.6640876Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3007' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:22 GMT + etag: + - '"0100b8b3-0000-3300-0000-60caf4140000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '14' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100b8b3-0000-3300-0000-60caf4140000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:50.6640876Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3007' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:23 GMT + etag: + - '"0100b8b3-0000-3300-0000-60caf4140000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '18' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100b8b3-0000-3300-0000-60caf4140000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:04:50.6640876Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '3007' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:24 GMT + etag: + - '"0100b8b3-0000-3300-0000-60caf4140000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], + "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet", "ignoreMissingVnetServiceEndpoint": true}]}}}' headers: Accept: - - application/json + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + Content-Length: + - '370' + Content-Type: + - application/json + ParameterSetName: + - -n -g --subnet + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100bbb3-0000-3300-0000-60caf4340000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:24.498396Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a6588927-5481-4c36-b321-11179703e6a8?api-version=2017-04-18 + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:26 GMT + etag: + - '"0100bbb3-0000-3300-0000-60caf4340000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a6588927-5481-4c36-b321-11179703e6a8?api-version=2017-04-18&operationResultResponseType=Location + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '887' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - cognitiveservices account network-rule remove Connection: - keep-alive - Content-Length: - - '370' - Content-Type: - - application/json ParameterSetName: - -n -g --subnet User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) - method: PATCH + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a6588927-5481-4c36-b321-11179703e6a8?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a6588927-5481-4c36-b321-11179703e6a8","name":"a6588927-5481-4c36-b321-11179703e6a8","status":"Succeeded","startTime":"2021-06-17T07:05:25Z","endTime":"2021-06-17T07:05:26Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:05:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '84' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 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":"\"10007111-0000-3300-0000-60bc17570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100bcb3-0000-3300-0000-60caf4360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:24.498396Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/dcb9a6f2-12db-4ac0-92da-938d64ee7831?api-version=2017-04-18 cache-control: - no-cache content-length: - - '3028' + - '2737' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:20 GMT + - Thu, 17 Jun 2021 07:05:56 GMT etag: - - '"10007111-0000-3300-0000-60bc17570000"' + - '"0100bcb3-0000-3300-0000-60caf4360000"' expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/dcb9a6f2-12db-4ac0-92da-938d64ee7831?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '806' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '9' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1956,24 +2697,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10007211-0000-3300-0000-60bc17580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100bcb3-0000-3300-0000-60caf4360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:24.498396Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3029' + - '2737' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:51 GMT + - Thu, 17 Jun 2021 07:05:56 GMT etag: - - '"10007211-0000-3300-0000-60bc17580000"' + - '"0100bcb3-0000-3300-0000-60caf4360000"' expires: - '-1' pragma: @@ -2007,24 +2747,23 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10007211-0000-3300-0000-60bc17580000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:19.2234044Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100bcb3-0000-3300-0000-60caf4360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:24.498396Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"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":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '3029' + - '2737' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:50 GMT + - Thu, 17 Jun 2021 07:05:57 GMT etag: - - '"10007211-0000-3300-0000-60bc17580000"' + - '"0100bcb3-0000-3300-0000-60caf4360000"' expires: - '-1' pragma: @@ -2040,7 +2779,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '12' status: code: 200 message: OK @@ -2063,30 +2802,29 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10009411-0000-3300-0000-60bc17780000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100bfb3-0000-3300-0000-60caf4550000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:57.8236232Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/38b1572c-9815-4af2-b353-106f3a5b5057?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0d175983-0060-426c-8b37-4bd79277a645?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2761' + - '2470' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:31:53 GMT + - Thu, 17 Jun 2021 07:06:10 GMT etag: - - '"10009411-0000-3300-0000-60bc17780000"' + - '"0100bfb3-0000-3300-0000-60caf4550000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/38b1572c-9815-4af2-b353-106f3a5b5057?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0d175983-0060-426c-8b37-4bd79277a645?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -2096,12 +2834,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1173' + - '11614' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0d175983-0060-426c-8b37-4bd79277a645?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0d175983-0060-426c-8b37-4bd79277a645","name":"0d175983-0060-426c-8b37-4bd79277a645","status":"Succeeded","startTime":"2021-06-17T07:06:09Z","endTime":"2021-06-17T07:06:09Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:06:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100c2b3-0000-3300-0000-60caf4610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:57.8236232Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '2471' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:06:39 GMT + etag: + - '"0100c2b3-0000-3300-0000-60caf4610000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '10' + status: + code: 200 + message: OK - request: body: null headers: @@ -2116,24 +2952,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10009511-0000-3300-0000-60bc17790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100c2b3-0000-3300-0000-60caf4610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:57.8236232Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '2762' + - '2471' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:32:23 GMT + - Thu, 17 Jun 2021 07:06:40 GMT etag: - - '"10009511-0000-3300-0000-60bc17790000"' + - '"0100c2b3-0000-3300-0000-60caf4610000"' expires: - '-1' pragma: @@ -2149,7 +2984,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '16' status: code: 200 message: OK @@ -2167,24 +3002,23 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10009511-0000-3300-0000-60bc17790000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:31:52.0279962Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100c2b3-0000-3300-0000-60caf4610000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:05:57.8236232Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '2762' + - '2471' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:32:24 GMT + - Thu, 17 Jun 2021 07:06:40 GMT etag: - - '"10009511-0000-3300-0000-60bc17790000"' + - '"0100c2b3-0000-3300-0000-60caf4610000"' expires: - '-1' pragma: @@ -2200,7 +3034,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '12' status: code: 200 message: OK @@ -2223,30 +3057,29 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000ac11-0000-3300-0000-60bc17990000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100d4b3-0000-3300-0000-60caf4810000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:06:41.8627823Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f07fa562-6143-4a89-9630-7ce004c5d158?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/86810fd3-529e-4afe-b926-0e7eac20f4bb?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2761' + - '2470' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:32:25 GMT + - Thu, 17 Jun 2021 07:06:42 GMT etag: - - '"1000ac11-0000-3300-0000-60bc17990000"' + - '"0100d4b3-0000-3300-0000-60caf4810000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/f07fa562-6143-4a89-9630-7ce004c5d158?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/86810fd3-529e-4afe-b926-0e7eac20f4bb?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -2256,12 +3089,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '108' + - '186' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/86810fd3-529e-4afe-b926-0e7eac20f4bb?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/86810fd3-529e-4afe-b926-0e7eac20f4bb","name":"86810fd3-529e-4afe-b926-0e7eac20f4bb","status":"Succeeded","startTime":"2021-06-17T07:06:41Z","endTime":"2021-06-17T07:06:43Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:07:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100d5b3-0000-3300-0000-60caf4830000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:06:41.8627823Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '2471' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:07:12 GMT + etag: + - '"0100d5b3-0000-3300-0000-60caf4830000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11' + status: + code: 200 + message: OK - request: body: null headers: @@ -2276,24 +3207,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000ae11-0000-3300-0000-60bc179a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' + 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":"\"0100d5b3-0000-3300-0000-60caf4830000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:01:09.2286771Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:06:41.8627823Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T07:01:09.9330932Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"}}}' headers: cache-control: - no-cache content-length: - - '2762' + - '2471' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:32:56 GMT + - Thu, 17 Jun 2021 07:07:13 GMT etag: - - '"1000ae11-0000-3300-0000-60bc179a0000"' + - '"0100d5b3-0000-3300-0000-60caf4830000"' expires: - '-1' pragma: @@ -2309,7 +3239,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '9' status: code: 200 message: OK @@ -2329,8 +3259,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -2342,7 +3271,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:32:58 GMT + - Thu, 17 Jun 2021 07:07:16 GMT expires: - '-1' pragma: @@ -2354,9 +3283,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '273' + - '75' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK 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 365620beb90..248a296b415 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "sku": {"name": "S0"}, "location": "westus", - "properties": {"customSubDomainName": "csclitest000003"}}' + body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westus", "properties": + {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -12,31 +12,31 @@ interactions: Connection: - keep-alive Content-Length: - - '129' + - '128' Content-Type: - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"880085a8-0000-0700-0000-60b97d3e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text + 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":"\"8700b163-0000-0700-0000-60caf4a90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:07:19.4264567Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:07:19.4264567Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:07:20.0418663Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, + TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1339' + - '2235' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:20 GMT + - Thu, 17 Jun 2021 07:07:20 GMT etag: - - '"880085a8-0000-0700-0000-60b97d3e0000"' + - '"8700b163-0000-0700-0000-60caf4a90000"' expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '6340' + - '1927' x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -68,7 +68,7 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2021-04-30 response: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:20 GMT + - Thu, 17 Jun 2021 07:07:21 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '18' + - '10' status: code: 200 message: OK @@ -117,23 +117,20 @@ interactions: Content-Length: - '123' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"f697892d-62c6-44c9-8744-5cc86a7a81ee\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d7fc6dea-3080-426f-a65b-6a907ccf6d0e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"557c6b61-81ad-42d4-816b-ec508d104da0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -142,7 +139,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d5e01bd-e2d9-418d-be46-2c4ec601d3b6?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7018da64-e457-4f29-b844-7183d631f5fb?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -150,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:22 GMT + - Thu, 17 Jun 2021 07:07:23 GMT expires: - '-1' pragma: @@ -163,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc62c0be-31f1-4221-861c-2ee3ea122ae5 + - ba0bc85c-4521-454e-a639-b233ec1ec145 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -173,7 +170,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -183,10 +180,9 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2d5e01bd-e2d9-418d-be46-2c4ec601d3b6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7018da64-e457-4f29-b844-7183d631f5fb?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -198,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:25 GMT + - Thu, 17 Jun 2021 07:07:26 GMT expires: - '-1' pragma: @@ -215,7 +211,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36887d83-d373-497c-9beb-69048658cec0 + - cbf5e8c5-8ef8-4292-9dd8-7684054aa6c9 status: code: 200 message: OK @@ -223,7 +219,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -233,17 +229,16 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"7ab2989b-547c-4259-ab56-23f244fc344a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2ec498e9-3bbc-4249-a95e-2f8ef5cf9a9d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"557c6b61-81ad-42d4-816b-ec508d104da0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -256,9 +251,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:25 GMT + - Thu, 17 Jun 2021 07:07:26 GMT etag: - - W/"7ab2989b-547c-4259-ab56-23f244fc344a" + - W/"2ec498e9-3bbc-4249-a95e-2f8ef5cf9a9d" expires: - '-1' pragma: @@ -275,7 +270,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00f36a0d-f12d-4c4d-b13d-ad9d2e8942a8 + - 11f9fe06-9ab6-418f-82b9-9f38696c1e63 status: code: 200 message: OK @@ -293,19 +288,16 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"7ab2989b-547c-4259-ab56-23f244fc344a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2ec498e9-3bbc-4249-a95e-2f8ef5cf9a9d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"557c6b61-81ad-42d4-816b-ec508d104da0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -318,9 +310,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:25 GMT + - Thu, 17 Jun 2021 07:07:26 GMT etag: - - W/"7ab2989b-547c-4259-ab56-23f244fc344a" + - W/"2ec498e9-3bbc-4249-a95e-2f8ef5cf9a9d" expires: - '-1' pragma: @@ -337,15 +329,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7ec53ce-c65c-4415-95b1-81d429965d44 + - 13c68a4d-1979-49f1-8c59-d0ffdd6ab39b status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -357,30 +350,27 @@ interactions: Connection: - keep-alive Content-Length: - - '495' + - '588' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"eeddef3c-36d1-464f-9d14-55bce79a635f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d3ffb423-23e9-4a51-b237-8c0dbc903b97\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"557c6b61-81ad-42d4-816b-ec508d104da0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"eeddef3c-36d1-464f-9d14-55bce79a635f\\\"\",\r\n + \ \"etag\": \"W/\\\"d3ffb423-23e9-4a51-b237-8c0dbc903b97\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -389,7 +379,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65c9155f-0576-49c4-bd95-4f1598986b07?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/425bab70-6d02-453b-b3dd-6bfab73a0f77?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -397,7 +387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:27 GMT + - Thu, 17 Jun 2021 07:07:27 GMT expires: - '-1' pragma: @@ -414,7 +404,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 388a4260-2901-4ed1-9820-1c2679b650b3 + - f78a68b0-1ccf-4a0b-854e-8bd409b32e0d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -424,7 +414,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -434,10 +424,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/65c9155f-0576-49c4-bd95-4f1598986b07?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/425bab70-6d02-453b-b3dd-6bfab73a0f77?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -449,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:29 GMT + - Thu, 17 Jun 2021 07:07:31 GMT expires: - '-1' pragma: @@ -466,7 +455,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f178e5b5-f242-475f-97d1-0bd3b9e58276 + - 9f1e9ee4-a81d-4ec1-ae7a-87228252878c status: code: 200 message: OK @@ -474,7 +463,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -484,22 +473,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e53972ae-6667-4e02-b575-127a12372430\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"87fd6214-97fc-43a0-b60c-c98ba0b084fe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"557c6b61-81ad-42d4-816b-ec508d104da0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n + \ \"etag\": \"W/\\\"e53972ae-6667-4e02-b575-127a12372430\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -514,9 +502,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:29 GMT + - Thu, 17 Jun 2021 07:07:31 GMT etag: - - W/"7ecd54c6-f62a-4230-8d06-f3944fd7b11e" + - W/"e53972ae-6667-4e02-b575-127a12372430" expires: - '-1' pragma: @@ -533,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbca12a9-f64c-4243-a333-ad39639233f6 + - 173e909e-fade-4ec8-bc95-aae5d3bf81e7 status: code: 200 message: OK @@ -551,25 +539,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"880085a8-0000-0700-0000-60b97d3e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text + 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":"\"8700b163-0000-0700-0000-60caf4a90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:07:19.4264567Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:07:19.4264567Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:07:20.0418663Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, + TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1339' + - '2235' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:29 GMT + - Thu, 17 Jun 2021 07:07:32 GMT etag: - - '"880085a8-0000-0700-0000-60b97d3e0000"' + - '"8700b163-0000-0700-0000-60caf4a90000"' expires: - '-1' pragma: @@ -585,7 +573,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '13' status: code: 200 message: OK @@ -603,16 +591,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"7ecd54c6-f62a-4230-8d06-f3944fd7b11e\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e53972ae-6667-4e02-b575-127a12372430\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -625,9 +610,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:30 GMT + - Thu, 17 Jun 2021 07:07:32 GMT etag: - - W/"7ecd54c6-f62a-4230-8d06-f3944fd7b11e" + - W/"e53972ae-6667-4e02-b575-127a12372430" expires: - '-1' pragma: @@ -644,14 +629,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fef40098-768e-4d77-a369-e8464e71918b + - 58afd356-87af-4e8b-8fee-afd7510e98d3 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}' + "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' headers: Accept: - application/json @@ -662,29 +648,26 @@ interactions: Connection: - keep-alive Content-Length: - - '409' + - '462' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"99d7b076-d28a-4fad-99ea-185c53398cc5\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"8cbfb5eb-2d6d-44a9-b262-a8ba30d24323\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c653a8b6-696b-4b03-8b86-027c345408f4?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f742e35e-26c6-4957-ad7f-58f2b45d7dfc?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -692,7 +675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:30 GMT + - Thu, 17 Jun 2021 07:07:32 GMT expires: - '-1' pragma: @@ -709,9 +692,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e241883a-e2d6-42ff-b989-b4d82b754203 + - 2f02c6b0-0de9-4f5d-8be8-1b1f032e04cf x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -719,7 +702,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -729,10 +712,9 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c653a8b6-696b-4b03-8b86-027c345408f4?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f742e35e-26c6-4957-ad7f-58f2b45d7dfc?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -744,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:34 GMT + - Thu, 17 Jun 2021 07:07:35 GMT expires: - '-1' pragma: @@ -761,7 +743,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e018cf5d-02e5-4e80-a5a9-f43f3a61e5c2 + - d87876eb-cc0e-4d91-840f-72431c366b7e status: code: 200 message: OK @@ -769,7 +751,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -779,14 +761,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"3db97944-93c9-40b8-8c01-969ac981fabc\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"a84e6908-a92f-4e1e-a6a1-aafce6a72c2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -799,9 +780,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:34 GMT + - Thu, 17 Jun 2021 07:07:35 GMT etag: - - W/"3db97944-93c9-40b8-8c01-969ac981fabc" + - W/"a84e6908-a92f-4e1e-a6a1-aafce6a72c2f" expires: - '-1' pragma: @@ -818,14 +799,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a01d7dc-60e0-45b1-9af4-e338d9277334 + - 42165063-7bd7-4e15-82d6-a789088eddf1 status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default"}, - "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", - "groupIds": ["account"]}, "name": "pecs_cli_test_000002"}]}}' + body: '{"location": "westus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", + "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}, "privateLinkServiceConnections": [{"name": "pecs_cli_test_000002", + "properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", + "groupIds": ["account"]}}]}}' headers: Accept: - application/json @@ -836,29 +819,26 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '730' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"c0b7fa4f-88db-4cf8-89fc-7509aa1bb5c2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b2428550-f2ab-436e-8964-2c369699a7ab\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"0c0696c7-0662-48ef-83ec-9e02f77d0aa4\",\r\n \"privateLinkServiceConnections\": + \"ea2e35de-312f-4474-be29-4d1b81915fab\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"c0b7fa4f-88db-4cf8-89fc-7509aa1bb5c2\\\"\",\r\n + \ \"etag\": \"W/\\\"b2428550-f2ab-436e-8964-2c369699a7ab\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -867,13 +847,13 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.e811d1f1-4017-494b-9496-ec1ab9f342ce\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.c80ccc85-212e-42b2-95a7-f5a4de72efe2\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3104eae8-578e-4291-ac97-744b84683baa?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -881,7 +861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:37 GMT + - Thu, 17 Jun 2021 07:07:38 GMT expires: - '-1' pragma: @@ -894,7 +874,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5039bf12-e645-4260-a0d6-7d988ea6951d + - 715e1e0c-6ab8-4271-9692-d8c469509465 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -904,7 +884,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -915,10 +895,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3104eae8-578e-4291-ac97-744b84683baa?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -930,7 +909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:47 GMT + - Thu, 17 Jun 2021 07:07:48 GMT expires: - '-1' pragma: @@ -947,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c3b9ab5e-ef3e-43a8-a16a-0bb8123bb721 + - 7b6889a4-aa2c-4190-ac14-30bc8842fc51 status: code: 200 message: OK @@ -955,7 +934,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -966,10 +945,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3104eae8-578e-4291-ac97-744b84683baa?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -981,7 +959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:09:57 GMT + - Thu, 17 Jun 2021 07:07:59 GMT expires: - '-1' pragma: @@ -998,7 +976,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb67529c-61a6-49fc-8ac3-e5bac2040176 + - 67c1950f-a85a-4b58-b3b2-ab4d37267dd3 status: code: 200 message: OK @@ -1006,7 +984,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1017,10 +995,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6fd4567-ecfa-4b00-8331-267a7943a98c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3104eae8-578e-4291-ac97-744b84683baa?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1032,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:18 GMT + - Thu, 17 Jun 2021 07:08:19 GMT expires: - '-1' pragma: @@ -1049,7 +1026,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2ecf97b8-0923-4811-a1f9-3c24285f80cb + - 3c6cc41e-abc1-49a7-a3aa-243102fe2562 status: code: 200 message: OK @@ -1057,7 +1034,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1068,20 +1045,19 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5d70b7af-f6e1-478b-ad0e-69a9180589ba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"08eb3cbd-388f-481a-9af4-00d8499f0620\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"0c0696c7-0662-48ef-83ec-9e02f77d0aa4\",\r\n \"privateLinkServiceConnections\": + \"ea2e35de-312f-4474-be29-4d1b81915fab\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5d70b7af-f6e1-478b-ad0e-69a9180589ba\\\"\",\r\n + \ \"etag\": \"W/\\\"08eb3cbd-388f-481a-9af4-00d8499f0620\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1090,7 +1066,7 @@ interactions: \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.e811d1f1-4017-494b-9496-ec1ab9f342ce\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.c80ccc85-212e-42b2-95a7-f5a4de72efe2\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"csclitest000003.cognitiveservices.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" @@ -1102,9 +1078,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:18 GMT + - Thu, 17 Jun 2021 07:08:19 GMT etag: - - W/"5d70b7af-f6e1-478b-ad0e-69a9180589ba" + - W/"08eb3cbd-388f-481a-9af4-00d8499f0620" expires: - '-1' pragma: @@ -1121,7 +1097,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73a5a4ec-64bd-4245-971e-13e2fa8287a6 + - 94a39e6c-14d5-43db-bd72-6d650e4aa1c7 status: code: 200 message: OK @@ -1139,25 +1115,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"8800aca9-0000-0700-0000-60b97d5e0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-04T01:09:12.3989146Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-04T01:09:12.3989146Z"},"location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-04T01:09:17.9444405Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","name":"cs_cli_test_000002/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","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":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"endpoints":{"text + 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":"\"8700d164-0000-0700-0000-60caf4c80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:07:19.4264567Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:07:19.4264567Z"},"location":"westus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:07:20.0418663Z","callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.ea2e35de-312f-4474-be29-4d1b81915fab","name":"cs_cli_test_000002/pecs_cli_test_000002.ea2e35de-312f-4474-be29-4d1b81915fab","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":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, + TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2172' + - '3068' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:19 GMT + - Thu, 17 Jun 2021 07:08:19 GMT etag: - - '"8800aca9-0000-0700-0000-60b97d5e0000"' + - '"8700d164-0000-0700-0000-60caf4c80000"' expires: - '-1' pragma: @@ -1173,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '16' status: code: 200 message: OK @@ -1191,12 +1167,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.ea2e35de-312f-4474-be29-4d1b81915fab?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","name":"cs_cli_test_000002/pecs_cli_test_000002.0c0696c7-0662-48ef-83ec-9e02f77d0aa4","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0800ca95-0000-0700-0000-60b97d5f0000\"","location":"westus","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.ea2e35de-312f-4474-be29-4d1b81915fab","name":"cs_cli_test_000002/pecs_cli_test_000002.ea2e35de-312f-4474-be29-4d1b81915fab","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"06006d17-0000-0700-0000-60caf4c90000\"","location":"westus","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1205,9 +1181,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:20 GMT + - Thu, 17 Jun 2021 07:08:20 GMT etag: - - '"0800ca95-0000-0700-0000-60b97d5f0000"' + - '"06006d17-0000-0700-0000-60caf4c90000"' expires: - '-1' pragma: @@ -1223,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '128' + - '49' status: code: 200 message: OK @@ -1243,12 +1219,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: '' @@ -1256,17 +1229,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ec49a7d-30fb-456a-aab8-99e6967ebc6a?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 04 Jun 2021 01:10:20 GMT + - Thu, 17 Jun 2021 07:08:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/6ec49a7d-30fb-456a-aab8-99e6967ebc6a?api-version=2021-02-01 pragma: - no-cache server: @@ -1277,9 +1250,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7c49ff1-dd8e-4b99-8c5b-61021f044ff0 + - 510d959b-9c8f-4812-b018-21fd0856ef13 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1287,7 +1260,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1297,10 +1270,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ec49a7d-30fb-456a-aab8-99e6967ebc6a?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1312,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:30 GMT + - Thu, 17 Jun 2021 07:08:30 GMT expires: - '-1' pragma: @@ -1329,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91148d65-606e-4b4c-ae14-ba4fd8433eaf + - 25fef9ba-3d11-4ffc-8289-ecef118757f0 status: code: 200 message: OK @@ -1337,7 +1309,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1347,10 +1319,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/136b87f0-255a-47cc-9b93-66c0c951adb0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6ec49a7d-30fb-456a-aab8-99e6967ebc6a?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1362,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Jun 2021 01:10:40 GMT + - Thu, 17 Jun 2021 07:08:40 GMT expires: - '-1' pragma: @@ -1379,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ad65994b-517d-4da2-8d28-6bc3cdb42a57 + - 777c44b7-930b-413c-9ded-2f7a5a23daf2 status: code: 200 message: OK @@ -1399,8 +1370,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -1412,7 +1382,7 @@ interactions: content-length: - '0' date: - - Fri, 04 Jun 2021 01:10:44 GMT + - Thu, 17 Jun 2021 07:08:43 GMT expires: - '-1' pragma: @@ -1424,7 +1394,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '72' + - '65' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 55cf1c1be27..39a97386887 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cc0f-0000-3300-0000-60bc15380000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"0100f4b3-0000-3300-0000-60caf4fe0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:08:45.6308113Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:08:45.6308113Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:08:46.4361723Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7ed2ac4f-0f22-442d-b414-1ae71e99bfd5?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/06314dc5-382f-4735-9c39-79995566c541?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2684' + - '2393' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:18 GMT + - Thu, 17 Jun 2021 07:08:46 GMT etag: - - '"1000cc0f-0000-3300-0000-60bc15380000"' + - '"0100f4b3-0000-3300-0000-60caf4fe0000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1644' + - '1412' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/06314dc5-382f-4735-9c39-79995566c541?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/06314dc5-382f-4735-9c39-79995566c541","name":"06314dc5-382f-4735-9c39-79995566c541","status":"Succeeded","startTime":"2021-06-17T07:08:47Z","endTime":"2021-06-17T07:08:48Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:09:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '85' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --custom-domain + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"0100f5b3-0000-3300-0000-60caf5000000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:08:45.6308113Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:08:45.6308113Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:08:46.4361723Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2394' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:09:17 GMT + etag: + - '"0100f5b3-0000-3300-0000-60caf5000000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '17' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,7 +166,7 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateLinkResources?api-version=2021-04-30 response: @@ -83,7 +180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:47 GMT + - Thu, 17 Jun 2021 07:09:18 GMT expires: - '-1' pragma: @@ -99,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '18' status: code: 200 message: OK @@ -118,23 +215,20 @@ interactions: Content-Length: - '130' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"6e73a9e3-52d7-45bc-be15-04f340329fbe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"96e0040c-087d-4a4f-93b3-af5cc46a17dc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2f5d487c-c92d-4ece-8e9e-6c80b2429d36\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -143,7 +237,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/23bc46ee-272f-4415-ae53-76c83b3fc544?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/daef8255-6e9f-4f65-a9a8-8064bf4433ad?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -151,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:49 GMT + - Thu, 17 Jun 2021 07:09:19 GMT expires: - '-1' pragma: @@ -164,7 +258,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec580116-6a4c-42d0-b026-00a80bd2608a + - 159faa43-94d8-4dbd-a779-75ae6ec3a116 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -174,7 +268,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -184,10 +278,9 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/23bc46ee-272f-4415-ae53-76c83b3fc544?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/daef8255-6e9f-4f65-a9a8-8064bf4433ad?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -199,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:53 GMT + - Thu, 17 Jun 2021 07:09:22 GMT expires: - '-1' pragma: @@ -216,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f764371-dd69-4d58-b98e-d368ba7d6427 + - 4749d3d5-e8a4-4002-9842-5ef56ae555fb status: code: 200 message: OK @@ -224,7 +317,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -234,17 +327,16 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"ad7ae35f-5e75-4357-abd6-63dcff6459d8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2dee6454-c327-437c-9a49-6b9e7e927932\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2f5d487c-c92d-4ece-8e9e-6c80b2429d36\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -257,9 +349,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:53 GMT + - Thu, 17 Jun 2021 07:09:22 GMT etag: - - W/"ad7ae35f-5e75-4357-abd6-63dcff6459d8" + - W/"2dee6454-c327-437c-9a49-6b9e7e927932" expires: - '-1' pragma: @@ -276,7 +368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5858352c-0cb7-463c-8ae0-a92b675485e6 + - 1952680a-a062-4bbc-8bb2-86049ce0706c status: code: 200 message: OK @@ -294,19 +386,16 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"ad7ae35f-5e75-4357-abd6-63dcff6459d8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2dee6454-c327-437c-9a49-6b9e7e927932\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2f5d487c-c92d-4ece-8e9e-6c80b2429d36\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -319,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:53 GMT + - Thu, 17 Jun 2021 07:09:23 GMT etag: - - W/"ad7ae35f-5e75-4357-abd6-63dcff6459d8" + - W/"2dee6454-c327-437c-9a49-6b9e7e927932" expires: - '-1' pragma: @@ -338,15 +427,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f69f5b71-c065-44ea-9bc3-833bfce5a1b6 + - f114c6cc-35ba-43a7-823e-70161bcf6b8b status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002", "location": "centraluseuap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24"}, "name": "default"}], "virtualNetworkPeerings": + ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "default", + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -358,30 +448,27 @@ interactions: Connection: - keep-alive Content-Length: - - '502' + - '595' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"2c7662cc-c428-44fd-99f8-61425448664c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"38c494bf-1366-41ca-b5b8-910473387906\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2f5d487c-c92d-4ece-8e9e-6c80b2429d36\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"2c7662cc-c428-44fd-99f8-61425448664c\\\"\",\r\n + \ \"etag\": \"W/\\\"38c494bf-1366-41ca-b5b8-910473387906\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -390,7 +477,7 @@ interactions: false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/22a489fd-c7bf-4955-a91b-deeaddafc339?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b541f10e-678b-43c8-809e-a2a1d9c26af6?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -398,7 +485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:54 GMT + - Thu, 17 Jun 2021 07:09:24 GMT expires: - '-1' pragma: @@ -415,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18851b0e-e925-4de8-a102-2802cbc05004 + - d3ec2e93-a81e-44d1-987f-ceb8bad7c519 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -425,7 +512,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -435,10 +522,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/22a489fd-c7bf-4955-a91b-deeaddafc339?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b541f10e-678b-43c8-809e-a2a1d9c26af6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -450,7 +536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:58 GMT + - Thu, 17 Jun 2021 07:09:27 GMT expires: - '-1' pragma: @@ -467,7 +553,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 838bb7a8-f5a5-452a-b941-522b116183e1 + - 6bd16ed1-4672-4beb-9bdc-3c9b6c057a81 status: code: 200 message: OK @@ -475,7 +561,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -485,22 +571,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"cs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4ef091b7-8bc1-43fd-8dbf-5d6e4b8f3baa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"92f2ac54-bc19-408f-b70b-91be58deaa3d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2f5d487c-c92d-4ece-8e9e-6c80b2429d36\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n + \ \"etag\": \"W/\\\"4ef091b7-8bc1-43fd-8dbf-5d6e4b8f3baa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -515,9 +600,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:58 GMT + - Thu, 17 Jun 2021 07:09:27 GMT etag: - - W/"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff" + - W/"4ef091b7-8bc1-43fd-8dbf-5d6e4b8f3baa" expires: - '-1' pragma: @@ -534,7 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3d03110-fc43-4e3e-a8e4-b88d9108830f + - 45d1f77c-07bc-4d7b-ab57-63ce6f1115d6 status: code: 200 message: OK @@ -552,24 +637,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000cd0f-0000-3300-0000-60bc153a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100f5b3-0000-3300-0000-60caf5000000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:08:45.6308113Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:08:45.6308113Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:08:46.4361723Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2685' + - '2394' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:58 GMT + - Thu, 17 Jun 2021 07:09:27 GMT etag: - - '"1000cd0f-0000-3300-0000-60bc153a0000"' + - '"0100f5b3-0000-3300-0000-60caf5000000"' expires: - '-1' pragma: @@ -603,16 +687,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"4ef091b7-8bc1-43fd-8dbf-5d6e4b8f3baa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -625,9 +706,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:22:59 GMT + - Thu, 17 Jun 2021 07:09:28 GMT etag: - - W/"5dc4f8e8-131f-40f1-9a2a-9f65c3a362ff" + - W/"4ef091b7-8bc1-43fd-8dbf-5d6e4b8f3baa" expires: - '-1' pragma: @@ -644,14 +725,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5746ba72-6740-4f00-82de-8cdd9e1bd2f6 + - ccac37c8-8b5a-4562-9d89-27d130b069c9 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", - "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "default"}' + "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' headers: Accept: - application/json @@ -662,29 +744,26 @@ interactions: Connection: - keep-alive Content-Length: - - '409' + - '462' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"9ecf79af-a09f-4361-9208-8b7030272463\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"3da64372-c3e7-49cd-a359-612e8d4d5bde\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df185af5-c16a-43b2-a613-b3db1172c9a3?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5c0da213-4c25-4792-814c-f2908fcd7fc9?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -692,7 +771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:00 GMT + - Thu, 17 Jun 2021 07:09:28 GMT expires: - '-1' pragma: @@ -709,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da3eafd2-9a32-4d6a-883e-a4891d5a1e17 + - 3f754640-8de5-4b92-8769-a848004c3301 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -719,7 +798,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -729,10 +808,9 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/df185af5-c16a-43b2-a613-b3db1172c9a3?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5c0da213-4c25-4792-814c-f2908fcd7fc9?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -744,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:04 GMT + - Thu, 17 Jun 2021 07:09:32 GMT expires: - '-1' pragma: @@ -761,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e84ac3ce-6b29-45a7-a414-d5a4591d7948 + - c7274df5-e5c5-4e47-abca-27bf5e207d53 status: code: 200 message: OK @@ -769,7 +847,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -779,14 +857,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"d3e75308-eebb-4a25-aa87-7edd2f4750b4\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"dd463752-6214-4ba3-90e0-880f41625faa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -799,9 +876,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:04 GMT + - Thu, 17 Jun 2021 07:09:32 GMT etag: - - W/"d3e75308-eebb-4a25-aa87-7edd2f4750b4" + - W/"dd463752-6214-4ba3-90e0-880f41625faa" expires: - '-1' pragma: @@ -818,14 +895,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eeb0bb2a-cf79-46e8-bfd8-dc12c478fb31 + - 4b575b0b-2245-48f8-853b-a58f0ea1d157 status: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default"}, - "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", - "groupIds": ["account"]}, "name": "pecs_cli_test_000002"}]}}' + body: '{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default", + "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}, "privateLinkServiceConnections": [{"name": "pecs_cli_test_000002", + "properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002", + "groupIds": ["account"]}}]}}' headers: Accept: - application/json @@ -836,29 +915,26 @@ interactions: Connection: - keep-alive Content-Length: - - '628' + - '737' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"748de76a-83ab-41f0-8967-6b5e796771aa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ee43efc6-337f-4624-8ee9-d3e7fe98460f\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"bb7c0936-2b8e-45c5-a279-0246eab43d08\",\r\n \"privateLinkServiceConnections\": + \"708019c5-7e4b-4288-a775-ec2e45da8747\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"748de76a-83ab-41f0-8967-6b5e796771aa\\\"\",\r\n + \ \"etag\": \"W/\\\"ee43efc6-337f-4624-8ee9-d3e7fe98460f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -867,13 +943,13 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.bbdb5ce2-69a3-45e6-982e-262a3168464f\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.caa6e66f-08dc-416a-8c0d-b9d26d3b981c\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/61686e56-0421-4e41-a308-179c32ebd4a5?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -881,7 +957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:09 GMT + - Thu, 17 Jun 2021 07:09:37 GMT expires: - '-1' pragma: @@ -894,9 +970,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7afea48b-26e3-48fe-8143-d36c481e02c2 + - 5f8fab4d-de84-445a-95f0-47b708ed9959 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -904,7 +980,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -915,10 +991,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/61686e56-0421-4e41-a308-179c32ebd4a5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -930,7 +1005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:19 GMT + - Thu, 17 Jun 2021 07:09:47 GMT expires: - '-1' pragma: @@ -947,7 +1022,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96ef37bd-3b96-4e4b-ab42-fc6cc270c0d9 + - 258385ec-32b1-47eb-b3f7-fefd87d40842 status: code: 200 message: OK @@ -955,7 +1030,57 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name + -l + User-Agent: + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/61686e56-0421-4e41-a308-179c32ebd4a5?api-version=2021-02-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 07:09:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 818586f4-e618-4475-a5cd-c0e095002167 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -966,10 +1091,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/e7319f5e-1790-4e29-9537-0b97061c9977?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/61686e56-0421-4e41-a308-179c32ebd4a5?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -981,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:39 GMT + - Thu, 17 Jun 2021 07:10:18 GMT expires: - '-1' pragma: @@ -998,7 +1122,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a48dea04-f809-4269-ace6-ea095098ab44 + - e39274f6-447b-420b-ba5b-78658ec662df status: code: 200 message: OK @@ -1006,7 +1130,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1017,20 +1141,19 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: "{\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"1cab04e3-4cb4-4cb1-a497-efc91fb29db8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f83e59bf-d542-44ef-b098-f50c32f81565\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"bb7c0936-2b8e-45c5-a279-0246eab43d08\",\r\n \"privateLinkServiceConnections\": + \"708019c5-7e4b-4288-a775-ec2e45da8747\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pecs_cli_test_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002/privateLinkServiceConnections/pecs_cli_test_000002\",\r\n - \ \"etag\": \"W/\\\"1cab04e3-4cb4-4cb1-a497-efc91fb29db8\\\"\",\r\n + \ \"etag\": \"W/\\\"f83e59bf-d542-44ef-b098-f50c32f81565\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002\",\r\n \ \"groupIds\": [\r\n \"account\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1039,7 +1162,7 @@ interactions: \ },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.bbdb5ce2-69a3-45e6-982e-262a3168464f\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/pecs_cli_test_000002.nic.caa6e66f-08dc-416a-8c0d-b9d26d3b981c\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"csclitest000003.cognitiveservices.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" @@ -1051,9 +1174,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:39 GMT + - Thu, 17 Jun 2021 07:10:18 GMT etag: - - W/"1cab04e3-4cb4-4cb1-a497-efc91fb29db8" + - W/"f83e59bf-d542-44ef-b098-f50c32f81565" expires: - '-1' pragma: @@ -1070,7 +1193,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d5b491c-807c-4a0a-a11e-ebf26b3729b3 + - 99cc2536-4316-4a07-b1f0-acfa1f2218dc status: code: 200 message: OK @@ -1088,24 +1211,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"1000e30f-0000-3300-0000-60bc15760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","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":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"0100fab3-0000-3300-0000-60caf5410000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T07:08:45.6308113Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T07:08:45.6308113Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T07:08:46.4361723Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","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":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3518' + - '3227' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:41 GMT + - Thu, 17 Jun 2021 07:10:19 GMT etag: - - '"1000e30f-0000-3300-0000-60bc15760000"' + - '"0100fab3-0000-3300-0000-60caf5410000"' expires: - '-1' pragma: @@ -1121,7 +1243,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '25' status: code: 200 message: OK @@ -1139,12 +1261,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b512-0000-3300-0000-60bc15780000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b002560-0000-3300-0000-60caf5420000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1153,9 +1275,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:41 GMT + - Thu, 17 Jun 2021 07:10:19 GMT etag: - - '"0000b512-0000-3300-0000-60bc15780000"' + - '"0b002560-0000-3300-0000-60caf5420000"' expires: - '-1' pragma: @@ -1171,7 +1293,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '70' + - '46' status: code: 200 message: OK @@ -1189,12 +1311,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b512-0000-3300-0000-60bc15780000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b002560-0000-3300-0000-60caf5420000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1203,9 +1325,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:41 GMT + - Thu, 17 Jun 2021 07:10:19 GMT etag: - - '"0000b512-0000-3300-0000-60bc15780000"' + - '"0b002560-0000-3300-0000-60caf5420000"' expires: - '-1' pragma: @@ -1221,15 +1343,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '14' + - '87' status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", - "name": "cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747", + "name": "cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"0000b512-0000-3300-0000-60bc15780000\"", "location": "centraluseuap", "properties": + "\"0b002560-0000-3300-0000-60caf5420000\"", "location": "centraluseuap", "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": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1249,12 +1371,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b003560-0000-3300-0000-60caf55c0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1263,9 +1385,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:42 GMT + - Thu, 17 Jun 2021 07:10:20 GMT etag: - - '"0000b712-0000-3300-0000-60bc158e0000"' + - '"0b003560-0000-3300-0000-60caf55c0000"' expires: - '-1' pragma: @@ -1281,7 +1403,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '143' + - '56' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1301,12 +1423,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b003560-0000-3300-0000-60caf55c0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1315,9 +1437,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:52 GMT + - Thu, 17 Jun 2021 07:10:31 GMT etag: - - '"0000b712-0000-3300-0000-60bc158e0000"' + - '"0b003560-0000-3300-0000-60caf55c0000"' expires: - '-1' pragma: @@ -1333,7 +1455,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '75' + - '81' status: code: 200 message: OK @@ -1351,12 +1473,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b712-0000-3300-0000-60bc158e0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b003560-0000-3300-0000-60caf55c0000\"","location":"centraluseuap","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"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1365,9 +1487,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:23:53 GMT + - Thu, 17 Jun 2021 07:10:31 GMT etag: - - '"0000b712-0000-3300-0000-60bc158e0000"' + - '"0b003560-0000-3300-0000-60caf55c0000"' expires: - '-1' pragma: @@ -1383,15 +1505,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12' + - '62' status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", - "name": "cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747", + "name": "cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"0000b712-0000-3300-0000-60bc158e0000\"", "location": "centraluseuap", "properties": + "\"0b003560-0000-3300-0000-60caf55c0000\"", "location": "centraluseuap", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"}, "groupIds": ["account"], "privateLinkServiceConnectionState": {"status": "Rejected", "description": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1411,12 +1533,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b007360-0000-3300-0000-60caf57e0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1425,9 +1547,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:24:15 GMT + - Thu, 17 Jun 2021 07:10:54 GMT etag: - - '"0000b912-0000-3300-0000-60bc15b00000"' + - '"0b007360-0000-3300-0000-60caf57e0000"' expires: - '-1' pragma: @@ -1443,9 +1565,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '22116' + - '21863' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1463,12 +1585,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b007360-0000-3300-0000-60caf57e0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1477,9 +1599,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:24:26 GMT + - Thu, 17 Jun 2021 07:11:03 GMT etag: - - '"0000b912-0000-3300-0000-60bc15b00000"' + - '"0b007360-0000-3300-0000-60caf57e0000"' expires: - '-1' pragma: @@ -1495,7 +1617,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '50' status: code: 200 message: OK @@ -1513,12 +1635,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2021-04-30 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","name":"cs_cli_test_000002/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0000b912-0000-3300-0000-60bc15b00000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","name":"cs_cli_test_000002/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0b007360-0000-3300-0000-60caf57e0000\"","location":"centraluseuap","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Rejected","actionsRequired":"None"},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -1527,7 +1649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:24:27 GMT + - Thu, 17 Jun 2021 07:11:04 GMT expires: - '-1' pragma: @@ -1543,7 +1665,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '16' + - '18' status: code: 200 message: OK @@ -1563,9 +1685,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.bb7c0936-2b8e-45c5-a279-0246eab43d08?api-version=2021-04-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.708019c5-7e4b-4288-a775-ec2e45da8747?api-version=2021-04-30 response: body: string: '' @@ -1575,7 +1697,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:24:39 GMT + - Thu, 17 Jun 2021 07:11:17 GMT expires: - '-1' pragma: @@ -1587,7 +1709,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11999' + - '11916' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1607,7 +1729,7 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.13.0 + - python/3.7.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.25.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections?api-version=2021-04-30 response: @@ -1621,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:24:39 GMT + - Thu, 17 Jun 2021 07:11:17 GMT expires: - '-1' pragma: @@ -1637,7 +1759,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '16' + - '18' status: code: 200 message: OK @@ -1657,12 +1779,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002?api-version=2021-02-01 response: body: string: '' @@ -1670,17 +1789,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8fe05bed-c214-4bf4-9305-5d70aca4cd75?api-version=2021-02-01 cache-control: - no-cache content-length: - '0' date: - - Sun, 06 Jun 2021 00:24:39 GMT + - Thu, 17 Jun 2021 07:11:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/8fe05bed-c214-4bf4-9305-5d70aca4cd75?api-version=2021-02-01 pragma: - no-cache server: @@ -1691,7 +1810,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78f559e5-4130-4526-9994-db4285db6bf6 + - f5e12b25-b790-478d-bd44-1da1b86f4b8c x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1701,7 +1820,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1711,10 +1830,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8fe05bed-c214-4bf4-9305-5d70aca4cd75?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1726,7 +1844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:24:50 GMT + - Thu, 17 Jun 2021 07:11:28 GMT expires: - '-1' pragma: @@ -1743,7 +1861,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d76b997e-9f16-4c40-b93a-07d0c816cc4f + - 7c73bb6d-74b1-4ecb-9025-68ff75b3aa5e status: code: 200 message: OK @@ -1751,7 +1869,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1761,10 +1879,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.25.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f43875c2-24a8-4c09-8df8-76ff9b6d7132?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8fe05bed-c214-4bf4-9305-5d70aca4cd75?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1776,7 +1893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:25:00 GMT + - Thu, 17 Jun 2021 07:11:38 GMT expires: - '-1' pragma: @@ -1793,7 +1910,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cda6b2f8-8786-4d1f-a4bf-8e6d4f92e6cb + - 65e82a93-0f4f-415b-8baa-518993229517 status: code: 200 message: OK @@ -1813,8 +1930,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -1826,7 +1942,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:25:03 GMT + - Thu, 17 Jun 2021 07:11:40 GMT expires: - '-1' pragma: @@ -1838,7 +1954,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '79' + - '107' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: 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 f8eedebdd80..cf8cc743b53 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 @@ -18,26 +18,25 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"11001180-0000-3300-0000-60bd905c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' + 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":"\"010089b2-0000-3300-0000-60caf0350000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:20.8897581Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:20.8897581Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/5780d733-12f6-4aec-b015-0e628fe512dc?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ebb5b5cb-e82c-499e-a2bb-1aed8e5812b2?api-version=2017-04-18 cache-control: - no-cache content-length: - - '2684' + - '2393' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:19:56 GMT + - Thu, 17 Jun 2021 06:48:22 GMT etag: - - '"11001180-0000-3300-0000-60bd905c0000"' + - '"010089b2-0000-3300-0000-60caf0350000"' expires: - '-1' pragma: @@ -49,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1554' + - '1237' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --custom-domain --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ebb5b5cb-e82c-499e-a2bb-1aed8e5812b2?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ebb5b5cb-e82c-499e-a2bb-1aed8e5812b2","name":"ebb5b5cb-e82c-499e-a2bb-1aed8e5812b2","status":"Succeeded","startTime":"2021-06-17T06:48:22Z","endTime":"2021-06-17T06:48:22Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:48:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '7' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --sku -l --custom-domain --yes + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + 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=2021-04-30 + 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":"\"01008bb2-0000-3300-0000-60caf0360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:20.8897581Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:20.8897581Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2394' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:48:52 GMT + etag: + - '"01008bb2-0000-3300-0000-60caf0360000"' + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '17' + status: + code: 200 + message: OK - request: body: null headers: @@ -69,24 +166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"11001380-0000-3300-0000-60bd905d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"01008bb2-0000-3300-0000-60caf0360000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:20.8897581Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:20.8897581Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2685' + - '2394' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:20:27 GMT + - Thu, 17 Jun 2021 06:48:53 GMT etag: - - '"11001380-0000-3300-0000-60bd905d0000"' + - '"01008bb2-0000-3300-0000-60caf0360000"' expires: - '-1' pragma: @@ -122,8 +218,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -135,7 +230,7 @@ interactions: content-length: - '0' date: - - Mon, 07 Jun 2021 03:20:29 GMT + - Thu, 17 Jun 2021 06:48:56 GMT expires: - '-1' pragma: @@ -147,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '90' + - '114' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -167,22 +262,21 @@ interactions: ParameterSetName: - --location -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2021-04-30 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"11002d80-0000-3300-0000-60bd907c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:19:55.0569527Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:19:55.0569527Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"010099b2-0000-3300-0000-60caf0560000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:20.8897581Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:20.8897581Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2723' + - '2432' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:20:29 GMT + - Thu, 17 Jun 2021 06:48:56 GMT expires: - '-1' pragma: @@ -198,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '12' status: code: 200 message: OK @@ -220,24 +314,23 @@ interactions: ParameterSetName: - --location -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"11003180-0000-3300-0000-60bd907f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:20:31.5793098Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:20:31.5793098Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"01009bb2-0000-3300-0000-60caf05a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:58.1647529Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:58.1647529Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2685' + - '2394' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:20:31 GMT + - Thu, 17 Jun 2021 06:48:57 GMT etag: - - '"11003180-0000-3300-0000-60bd907f0000"' + - '"01009bb2-0000-3300-0000-60caf05a0000"' expires: - '-1' pragma: @@ -249,7 +342,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '93' + - '106' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -269,24 +362,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"11003180-0000-3300-0000-60bd907f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:20:31.5793098Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:20:31.5793098Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:19:55.8545819Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' + 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":"\"01009bb2-0000-3300-0000-60caf05a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:48:58.1647529Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:58.1647529Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","dateCreated":"2021-06-17T06:48:21.5731181Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2685' + - '2394' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:20:32 GMT + - Thu, 17 Jun 2021 06:48:59 GMT etag: - - '"11003180-0000-3300-0000-60bd907f0000"' + - '"01009bb2-0000-3300-0000-60caf05a0000"' expires: - '-1' pragma: @@ -302,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '15' status: code: 200 message: OK @@ -322,8 +414,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -335,7 +426,7 @@ interactions: content-length: - '0' date: - - Mon, 07 Jun 2021 03:20:36 GMT + - Thu, 17 Jun 2021 06:49:01 GMT expires: - '-1' pragma: @@ -347,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '81' + - '88' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -369,8 +460,7 @@ interactions: ParameterSetName: - --location -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2021-04-30 response: @@ -378,17 +468,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c87a00f0-1821-4df3-95a8-948bdf1792cd?api-version=2017-04-18 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d1444d04-9188-4b58-9bec-a58153e80061?api-version=2017-04-18 cache-control: - no-cache content-length: - '0' date: - - Mon, 07 Jun 2021 03:20:52 GMT + - Thu, 17 Jun 2021 06:49:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c87a00f0-1821-4df3-95a8-948bdf1792cd?api-version=2017-04-18&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d1444d04-9188-4b58-9bec-a58153e80061?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -398,12 +488,60 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '15232' + - '1014' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - cognitiveservices account purge + Connection: + - keep-alive + ParameterSetName: + - --location -n -g + User-Agent: + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d1444d04-9188-4b58-9bec-a58153e80061?api-version=2017-04-18 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/d1444d04-9188-4b58-9bec-a58153e80061","name":"d1444d04-9188-4b58-9bec-a58153e80061","status":"Succeeded","startTime":"2021-06-17T06:49:03Z","endTime":"2021-06-17T06:49:03Z"}' + headers: + cache-control: + - no-cache + content-length: + - '311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Jun 2021 06:49:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '93' + status: + code: 200 + message: OK - request: body: null headers: @@ -416,37 +554,69 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/deletedAccounts?api-version=2021-04-30 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rguxa6qk5hgnevrapaomec55nnxatpby2i4gc7uedcsvufj3v5hsaokyola4a3grrqv/deletedAccounts/cs_cli_test_daex","name":"cs_cli_test_daex","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002e0d-0000-3300-0000-60bc12400000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:08:32.2344875Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:08:32.2344875Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:08:32.464796Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgntdmxg62p2aw42ndiun5ugkbplppxw33ard53uvlnl2u6p4rytt4royrje5vzseqi/deletedAccounts/cognkafdftal","name":"cognkafdftal","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000400d-0000-3300-0000-60bc12630000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:09:06.8016963Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:09:06.8016963Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:09:06.9956902Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg6472zenrlur2pudfctevsoiciu3jwxbp6ulkyxytaweoyqofxred6co6uazvz4crj/deletedAccounts/cs_cli_test_3hvl","name":"cs_cli_test_3hvl","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000cf0d-0000-3300-0000-60bc12f80000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:10:16.0822108Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:12:38.9750626Z"},"location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:10:16.320288Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"},{"name":"CustomerManagedKey"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgbmsd65beg4iicmf2iixmdidjpximlh546cmwuswyuii3vqupe7loxona262slrh4j/deletedAccounts/cs_cli_test_bezm","name":"cs_cli_test_bezm","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000900f-0000-3300-0000-60bc14f70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:07.9487337Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:20:07.9487337Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:20:08.1873617Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgg6iisk3aveex4oh34sg3x6jt3uryyrcqyuohp5fzbx36m7rjjebvvx2gyrh6h3shq/deletedAccounts/cogfn2xcdmvc","name":"cogfn2xcdmvc","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000ae0f-0000-3300-0000-60bc151c0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:20:42.7859305Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:21:14.8066817Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamejd7rrjjb":"tagvalueh4slbel"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:20:42.983225Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgzvg46zhnlo7uixb6gg6ryn2jjge34jk6vq3mc3ih253djafwkectjsegci242oytz/deletedAccounts/cs_cli_test_4g7z","name":"cs_cli_test_4g7z","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000d50f-0000-3300-0000-60bc154f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:21:35.5328404Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:21:35.5328404Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestp72jnyz.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:21:36.2602552Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestp72jnyz","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestp72jnyz.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqr3wrmpmorbrtaorqay7leulugjf7z76gpkbsgcvdfyoyba22hrwwftbw4yodx4kn/deletedAccounts/cs_cli_test_pwn7","name":"cs_cli_test_pwn7","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002f10-0000-3300-0000-60bc15de0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:22:15.9366295Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:22:15.9366295Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestc5pqctn.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:22:16.8300607Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestc5pqctn","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestc5pqctn.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgr34nklm5ur53njv4seuht7ecmk7y577tym5mr56viswftn5sdwj54ctwfac6cn5e5/deletedAccounts/cs_cli_test_n52b","name":"cs_cli_test_n52b","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10007d10-0000-3300-0000-60bc162f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:25:46.7184307Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:25:46.7184307Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:25:47.8568578Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"7e94d86d-0abe-49ab-9875-2b67ea773961","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgq7sj2bgcyqdndtw2uymdn2bscxbhylmb2uiqsqfuzjkcb2miv3zbuylrwhyfxdzxp/deletedAccounts/cogxdm5ig5gy","name":"cogxdm5ig5gy","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000a710-0000-3300-0000-60bc16530000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:25:52.7973362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:26:24.7875146Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamefmd5yrt3":"tagvalue6ctfigh"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:25:53.0302083Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgv3jcptfd43sx4em3lufoop6qkkk5eynypipb6ureecd6wqrjvxfskf6jajzbi7cyb/deletedAccounts/cs_cli_test_prih","name":"cs_cli_test_prih","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000aa10-0000-3300-0000-60bc16570000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:26:30.3914213Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:26:30.3914213Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvig64fd.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:26:31.0860552Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvig64fd","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvig64fd.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg2rpv75rkke55b4aisa7ktkc4ywioio43colaxcl7wf6w7xk7b23y3qulqpn5bmjlx/deletedAccounts/cs_cli_test_wh3w","name":"cs_cli_test_wh3w","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000c711-0000-3300-0000-60bc17b90000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:27:25.6346111Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:32:25.2735906Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest27pj5ub.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:27:26.2938618Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitest27pj5ub","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitest27pj5ub.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgobtpwvzafdobhenb66j2f5jr62kufziillyu3spi3w5bhobikytnulorbcclz66m3/deletedAccounts/cs_cli_test_2nbk","name":"cs_cli_test_2nbk","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000e311-0000-3300-0000-60bc17da0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:24.2405372Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:33:24.2405372Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:33:28.5014824Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"97230747-6959-4208-9c4d-dec01b9980a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgz62wpgawkrs64dw7g5bc6j7cbdq4q4xcxdf6c73ixkvmt76othgrlwkydxxf7xs6u/deletedAccounts/cogbpq2ntg76","name":"cogbpq2ntg76","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000ff11-0000-3300-0000-60bc18030000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:33:37.1658138Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:09.165035Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnamebz5vose7":"tagvalue3xezwmb"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:33:37.3648109Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggwmmvpsw2zz5qkfg3iqwng6x2kmsodbxuetk5pbfhcqbkofdgmv2optwqfry2ihgx/deletedAccounts/cs_cli_test_2bww","name":"cs_cli_test_2bww","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10002912-0000-3300-0000-60bc182a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:34:16.6939879Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:16.6939879Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestomusm3k.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:34:17.736212Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestomusm3k","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestomusm3k.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggwmmvpsw2zz5qkfg3iqwng6x2kmsodbxuetk5pbfhcqbkofdgmv2optwqfry2ihgx/deletedAccounts/cs_cli_test_cr42","name":"cs_cli_test_cr42","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10005012-0000-3300-0000-60bc186d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:34:52.9203047Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:34:52.9203047Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-06T00:34:53.0983681Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqzadtzrzxdwjr3ay6tbqh7caf7yuf2e3s4aluswl5qd4eosrbsesixyfbe5bsjari/deletedAccounts/cs_cli_test_uejm","name":"cs_cli_test_uejm","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10006512-0000-3300-0000-60bc18760000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:03.5845019Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:36:03.5845019Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:36:05.014526Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech - Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"f4b58f1a-988e-47a7-961b-64e4b3e0ada2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvrljkejcyatpz6muwg23pmjiubqfuzg65j3kqsex6cbfrfbrprzfyzo5spgtokydo/deletedAccounts/cs_cli_test_y3yu","name":"cs_cli_test_y3yu","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10008412-0000-3300-0000-60bc18a00000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:16.1979284Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:36:16.1979284Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestbnebqmn.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:36:16.8894529Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestbnebqmn","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestbnebqmn.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvrljkejcyatpz6muwg23pmjiubqfuzg65j3kqsex6cbfrfbrprzfyzo5spgtokydo/deletedAccounts/cs_cli_test_kq3w","name":"cs_cli_test_kq3w","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1000f512-0000-3300-0000-60bc19020000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:36:50.484544Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:37:22.2661964Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestyfxonng.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:36:50.7756325Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestyfxonng","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestyfxonng.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggpdifffns3yyc7tqrowzb6pxf3fq4kl352mibgeycrdrjzxe4krwokck5rx2ywjaw/deletedAccounts/cs_cli_test_d6t6","name":"cs_cli_test_d6t6","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10001513-0000-3300-0000-60bc19260000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/australiaeast/resourceGroups/Tru-ResourceGroup/deletedAccounts/Imerrsivereaserbugbash","name":"Imerrsivereaserbugbash","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1700d46c-0000-1a00-0000-60c9b2480000\"","location":"australiaeast","sku":{"name":"S0"},"kind":"ImmersiveReader","tags":{},"properties":{"endpoint":"https://imerrsivereaserbugbash.cognitiveservices.azure.com/","dateCreated":"2020-04-28T00:33:54.8868125Z","callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"imerrsivereaserbugbash","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"immersiveReader":"https://imerrsivereaserbugbash.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/resourceGroups/clitest.rgmk4jp2hwb7bzidbmvyoetiux2mlvb53kwkiwgax345mlgobrsmiblf3k5umfpp4a2/deletedAccounts/cs_cli_test_o4gj","name":"cs_cli_test_o4gj","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"8700072d-0000-0700-0000-60caef0b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:21.2574994Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:21.2574994Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:21.4796743Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/resourceGroups/clitest.rgmk4jp2hwb7bzidbmvyoetiux2mlvb53kwkiwgax345mlgobrsmiblf3k5umfpp4a2/deletedAccounts/cs_cli_test_pfau","name":"cs_cli_test_pfau","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"8700382d-0000-0700-0000-60caef100000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:25.9985633Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:25.9985633Z"},"location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:26.2888149Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"}],"endpoints":{"qnAMaker":"https://westus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus2/resourceGroups/Tru-ResourceGroup/deletedAccounts/testanomaly1234","name":"testanomaly1234","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1300fdfe-0000-0800-0000-60c9b2470000\"","location":"westus2","sku":{"name":"S0"},"kind":"AnomalyDetector","tags":{},"properties":{"endpoint":"https://testanomaly1234.cognitiveservices.azure.com/","dateCreated":"2021-03-24T21:25:05.5736498Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"anomalydetector.multivariate.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models","method":"POST"},{"path":"anomalydetector/multivariate/models/{modelId}/export","method":"*"}]},{"key":"anomalydetector.multivariate.detect","renewalPeriod":60,"count":12,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models/{modelId}/detect","method":"*"}]},{"key":"anomalydetector.multivariate.retrieve","renewalPeriod":60,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models","method":"GET"},{"path":"anomalydetector/multivariate/models/{modelId}","method":"*"},{"path":"anomalydetector/multivariate/results/{resultId}","method":"*"}]},{"key":"default","renewalPeriod":1,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"testanomaly1234","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"AnomalyDetector.AnomalyDetector"},{"name":"CustomerManagedKey"}],"endpoints":{"anomalyDetector":"https://testanomaly1234.cognitiveservices.azure.com/"},"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus2/resourceGroups/Tru-ResourceGroup/deletedAccounts/TruTestAnomaly23","name":"TruTestAnomaly23","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"130000ff-0000-0800-0000-60c9b24a0000\"","location":"westus2","sku":{"name":"S0"},"kind":"AnomalyDetector","tags":{},"properties":{"endpoint":"https://trutestanomaly23.cognitiveservices.azure.com/","dateCreated":"2021-03-24T21:34:58.3794406Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"anomalydetector.multivariate.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models","method":"POST"},{"path":"anomalydetector/multivariate/models/{modelId}/export","method":"*"}]},{"key":"anomalydetector.multivariate.detect","renewalPeriod":60,"count":12,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models/{modelId}/detect","method":"*"}]},{"key":"anomalydetector.multivariate.retrieve","renewalPeriod":60,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"anomalydetector/multivariate/models","method":"GET"},{"path":"anomalydetector/multivariate/models/{modelId}","method":"*"},{"path":"anomalydetector/multivariate/results/{resultId}","method":"*"}]},{"key":"default","renewalPeriod":1,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"trutestanomaly23","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"AnomalyDetector.AnomalyDetector"},{"name":"CustomerManagedKey"}],"endpoints":{"anomalyDetector":"https://trutestanomaly23.cognitiveservices.azure.com/"},"provisioningState":"Failed"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/resourceGroups/clitest.rgxztpalwdswhrtziuaa7sldunrgddphsu3oe6k2bvut2lvtnovqlmhswo6zzrajmyd/deletedAccounts/cs_cli_test_nmrv","name":"cs_cli_test_nmrv","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"0c0070c9-0000-0d00-0000-60caf0280000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:46:33.5372851Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:46:33.5372851Z"},"location":"westeurope","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:46:34.1497742Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.getcalls","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.2/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2, + TextAnalytics.KeyPhraseONNX, TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"text + Analytics":"https://westeurope.api.cognitive.microsoft.com/","qnAMaker":"https://westeurope.api.cognitive.microsoft.com/","turing":"https://westeurope.api.cognitive.microsoft.com/","questionAnswering":"https://westeurope.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/southcentralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/TruTestQnaTA","name":"TruTestQnaTA","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"0907f1f9-0000-0500-0000-60c9b24a0000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-11T01:33:47.8409533Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-11T01:33:47.8409533Z"},"location":"southcentralus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"internalId":"6d5f664843ea48f49cd2eea9a2af430f","dateCreated":"2021-06-11T01:33:51.8028389Z","apiProperties":{"qnaAzureSearchEndpointId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Tru-ResourceGroup/providers/Microsoft.Search/searchServices/trutestqnata-aso6b7np7h3ajrs","qnaAzureSearchEndpointKey":"70OFH1bak8fnrAnFJ3rPIA==!nhvIdaxOoqpG4NUoSXD86QXuaK9HCCEXJWVAv76Edlcx43s8byHj4R+YTzgqsNbb"},"customSubDomainName":"trutestqnata","provisioningState":"Succeeded"},"identity":{"principalId":"680fc3b8-2577-4693-a670-75671cfad485","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/southcentralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/dfgnmwewewewfrrd","name":"dfgnmwewewewfrrd","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"090786f5-0000-0500-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T08:09:58.8203305Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T08:09:58.8203305Z"},"location":"southcentralus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"internalId":"92854c0da28245298b68b74cc58bccf8","dateCreated":"2021-06-16T08:10:00.1938028Z","apiProperties":{"qnaAzureSearchEndpointId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Tru-ResourceGroup/providers/Microsoft.Search/searchServices/dfgnmwewewewfrrd-as4aou2hsrl7leo","qnaAzureSearchEndpointKey":"G21cwZ14DsA8nMmotoObwg==!brWINTvWUmIKtQkg6HW6ixVWvjrZ5uI6kDLXG6nZ3l5TadjE2EZ+MxcADXVcujwF"},"customSubDomainName":"dfgnmwewewewfrrd","provisioningState":"Succeeded"},"identity":{"principalId":"2fb010f0-c633-4c4e-90b0-2a73d1f9d124","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/eastus/resourceGroups/Tru-ResourceGroup/deletedAccounts/CVTEstTru242234-Prediction","name":"CVTEstTru242234-Prediction","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1f01814a-0000-0100-0000-60c9b2470000\"","systemData":{"lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-08T19:04:30.168057Z"},"location":"eastus","sku":{"name":"S0"},"kind":"CustomVision.Prediction","properties":{"endpoint":"https://cvtesttru242234-prediction.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-05-08T19:03:15.7037057Z","callRateLimit":{"rules":[{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"cvtesttru242234-prediction","encryption":{"keySource":"Microsoft.Keyvault","keyVaultProperties":{"keyName":"TruTestKey","keyVersion":"7e15a55c4135494fa8ea9b859692fd99","keyVaultUri":"https://trukeyvault.vault.azure.net"}},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CustomerManagedKey"},{"name":"VirtualNetworks"}],"endpoints":{"custom_Vision_Prediction_3.0":"https://cvtesttru242234-prediction.cognitiveservices.azure.com/","custom_Vision_Prediction_3.1":"https://cvtesttru242234-prediction.cognitiveservices.azure.com/"}},"identity":{"principalId":"7ad08787-757c-4ee2-bf9d-93b705ac8838","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/eastus/resourceGroups/Tru-ResourceGroup/deletedAccounts/CVTEstTru242234","name":"CVTEstTru242234","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1f01834a-0000-0100-0000-60c9b2480000\"","systemData":{"lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-08T19:05:12.4208223Z"},"location":"eastus","sku":{"name":"S0"},"kind":"CustomVision.Training","properties":{"endpoint":"https://cvtesttru242234.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-05-08T19:03:40.5430816Z","callRateLimit":{"rules":[{"key":"customvision.prediction","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"customvision/v3.0/prediction/*","method":"*"},{"path":"customvision/v3.1/prediction/*","method":"*"}]},{"key":"customvision.training","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"customvision/v3.0/training/*","method":"*"},{"path":"customvision/v3.1/training/*","method":"*"},{"path":"customvision/v3.2/training/*","method":"*"},{"path":"customvision/v3.3/training/*","method":"*"},{"path":"customvision/v3.4-preview/training/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"cvtesttru242234","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CustomerManagedKey"},{"name":"VirtualNetworks"}],"endpoints":{"custom_Vision_Training_3.1":"https://cvtesttru242234.cognitiveservices.azure.com/","custom_Vision_Training_3.2":"https://cvtesttru242234.cognitiveservices.azure.com/","custom_Vision_Training_3.3":"https://cvtesttru242234.cognitiveservices.azure.com/"}},"identity":{"principalId":"4ae2b25b-355a-4398-9266-0106e5e879a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/eastus/resourceGroups/Tru-ResourceGroup/deletedAccounts/dsddssdsfsfsfsfsfsfs","name":"dsddssdsfsfsfsfsfsfs","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1f017c4a-0000-0100-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T08:07:42.4952527Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T08:07:42.4952527Z"},"location":"eastus","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"internalId":"1d7bbec116b54c8aaca51b54ffd88e2c","dateCreated":"2021-06-16T08:07:43.9627618Z","customSubDomainName":"dsddssdsfsfsfsfsfsfs","provisioningState":"Succeeded"},"identity":{"principalId":"419e4504-adc4-4b03-b62a-cfebc52de4b8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/eastus2/resourceGroups/Tru-ResourceGroup/deletedAccounts/trutestcv323232","name":"trutestcv323232","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"04009560-0000-0200-0000-60c8ed2d0000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-15T18:10:30.4076706Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-15T18:10:30.4076706Z"},"location":"eastus2","sku":{"name":"S1"},"kind":"ComputerVision","tags":{},"properties":{"internalId":"2ebf7eea35774000822e9eebe668491e","dateCreated":"2021-06-15T18:10:30.7257114Z","customSubDomainName":"trutestcv323232","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/trutestface3443534","name":"trutestface3443534","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"04003cca-0000-0300-0000-60c9b24a0000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-05-08T01:33:01.6497666Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-08T01:33:01.6497666Z"},"location":"centralus","sku":{"name":"S0"},"kind":"Face","tags":{},"properties":{"internalId":"b96325afe96044bf805602dd377d9b0a","dateCreated":"2021-05-08T01:33:02.1552994Z","customSubDomainName":"trutestface3443534","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/CognitiveServicesTestTru","name":"CognitiveServicesTestTru","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"040038ca-0000-0300-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-05-08T01:40:27.5337977Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-08T01:40:27.5337977Z"},"location":"centralus","sku":{"name":"S0"},"kind":"CognitiveServices","tags":{},"properties":{"internalId":"8f0ab9beb5844b47b95facf07b79a668","dateCreated":"2021-05-08T01:40:29.8779439Z","apiProperties":{},"customSubDomainName":"cognitiveservicestesttru","publicNetworkAccess":"Enabled","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/AllinOneTestTru","name":"AllinOneTestTru","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"040037ca-0000-0300-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-11T03:17:03.0091646Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-11T03:17:03.0091646Z"},"location":"centralus","sku":{"name":"S0"},"kind":"CognitiveServices","tags":{},"properties":{"endpoint":"https://allinonetesttru.cognitiveservices.azure.com/","dateCreated":"2021-06-11T03:17:03.6490728Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"docmentTranslation","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"token","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"ListManagement","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/lists/v1.0/*","method":"*"}]},{"key":"Moderate","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/moderate/v1.0/*","method":"*"}]},{"key":"Review","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/review/v1.0/*","method":"*"}]},{"key":"luis.endpoint","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"luis/*","method":"*"},{"path":"luis/prediction/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"bingVisualSearch","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bing/v7.0/images/visualsearch/*","method":"*"}]},{"key":"bingSearch","renewalPeriod":1,"count":250,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bing/*","method":"*"}]},{"key":"bingCustomSearch","renewalPeriod":1,"count":150,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bingcustomsearch/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"allinonetesttru","publicNetworkAccess":"Enabled","capabilities":[{"name":"Container","value":"Face.*,Face.Face,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,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, + TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,FormRecognizer.*"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"bing + Autosuggest":"https://allinonetesttru.cognitiveservices.azure.com/","bing + Spell Check":"https://allinonetesttru.cognitiveservices.azure.com/","bing + Entity Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing + Image Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing + News Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing + Video Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing + Web Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing Visual + Search":"https://allinonetesttru.cognitiveservices.azure.com/","bing Custom + Search":"https://allinonetesttru.cognitiveservices.azure.com/","face":"https://allinonetesttru.cognitiveservices.azure.com/","computer + Vision":"https://allinonetesttru.cognitiveservices.azure.com/","text Analytics":"https://allinonetesttru.cognitiveservices.azure.com/","luis":"https://allinonetesttru.cognitiveservices.azure.com/","content + Moderator - Review":"https://allinonetesttru.cognitiveservices.azure.com/","content + Moderator - Moderate":"https://allinonetesttru.cognitiveservices.azure.com/","content + Moderator - List Management":"https://allinonetesttru.cognitiveservices.azure.com/","textTranslation-Global":"https://api.cognitive.microsofttranslator.com/","textTranslation":"https://allinonetesttru.cognitiveservices.azure.com/","documentTranslation":"https://allinonetesttru.cognitiveservices.azure.com/","token":"https://allinonetesttru.cognitiveservices.azure.com/","container":"https://allinonetesttru.cognitiveservices.azure.com/","speech + Services Speech to Text v2.0":"https://allinonetesttru.cognitiveservices.azure.com/","speech + Services Speech to Text v3.0":"https://allinonetesttru.cognitiveservices.azure.com/","speech + Services Custom Voice":"https://allinonetesttru.cognitiveservices.azure.com/","unified + Speech":"https://allinonetesttru.cognitiveservices.azure.com/","formRecognizer":"https://allinonetesttru.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/14.nlp-with-dispatch/deletedAccounts/dfghnmhgfds","name":"dfghnmhgfds","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"04000386-0000-0300-0000-60c9974e0000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T06:16:24.5358682Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T06:16:24.5358682Z"},"location":"centralus","sku":{"name":"S1"},"kind":"ComputerVision","tags":{},"properties":{"endpoint":"https://dfghnmhgfds.cognitiveservices.azure.com/","dateCreated":"2021-06-16T06:16:24.8708669Z","callRateLimit":{"rules":[{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"dfghnmhgfds","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"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"}],"endpoints":{"computer + Vision":"https://dfghnmhgfds.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/asshdjdfkkfkfkfkf","name":"asshdjdfkkfkfkfkf","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"040039ca-0000-0300-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T07:02:48.5959993Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T07:02:48.5959993Z"},"location":"centralus","sku":{"name":"F0"},"kind":"Face","tags":{},"properties":{"endpoint":"https://asshdjdfkkfkfkfkf.cognitiveservices.azure.com/","dateCreated":"2021-06-16T07:02:48.8076725Z","customSubDomainName":"asshdjdfkkfkfkfkf","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://asshdjdfkkfkfkfkf.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/sakdsjkjdsjdskjsdkjkjf","name":"sakdsjkjdsjdskjsdkjkjf","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"04003aa8-0000-0300-0000-60c9a2de0000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T07:05:03.9584422Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T07:05:03.9584422Z"},"location":"centralus","sku":{"name":"F0"},"kind":"ComputerVision","tags":{},"properties":{"endpoint":"https://sakdsjkjdsjdskjsdkjkjf.cognitiveservices.azure.com/","dateCreated":"2021-06-16T07:05:04.3815622Z","customSubDomainName":"sakdsjkjdsjdskjsdkjkjf","networkAcls":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"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"}],"endpoints":{"computer + Vision":"https://sakdsjkjdsjdskjsdkjkjf.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centralus/resourceGroups/Tru-ResourceGroup/deletedAccounts/sdsfgfjgghghghghgg","name":"sdsfgfjgghghghghgg","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"040036ca-0000-0300-0000-60c9b2470000\"","systemData":{"createdBy":"trdand@microsoft.com","createdByType":"User","createdAt":"2021-06-16T07:08:21.7981746Z","lastModifiedBy":"trdand@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-16T07:08:21.7981746Z"},"location":"centralus","sku":{"name":"S0"},"kind":"CognitiveServices","tags":{},"properties":{"endpoint":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","dateCreated":"2021-06-16T07:08:22.107309Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"docmentTranslation","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"token","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"ListManagement","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/lists/v1.0/*","method":"*"}]},{"key":"Moderate","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/moderate/v1.0/*","method":"*"}]},{"key":"Review","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"contentmoderator/review/v1.0/*","method":"*"}]},{"key":"luis.endpoint","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"luis/*","method":"*"},{"path":"luis/prediction/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"language/text/authoring/v1.0-preview.1/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"bingVisualSearch","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bing/v7.0/images/visualsearch/*","method":"*"}]},{"key":"bingSearch","renewalPeriod":1,"count":250,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bing/*","method":"*"}]},{"key":"bingCustomSearch","renewalPeriod":1,"count":150,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"bingcustomsearch/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"sdsfgfjgghghghghgg","publicNetworkAccess":"Enabled","capabilities":[{"name":"Container","value":"Face.*,Face.Face,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,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX, + TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,FormRecognizer.*"},{"name":"Cloud","value":"TextAnalytics.Healthcare"}],"endpoints":{"bing + Autosuggest":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Spell Check":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Entity Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Image Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + News Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Video Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Web Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Visual Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","bing + Custom Search":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","face":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","computer + Vision":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","text Analytics":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","luis":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","content + Moderator - Review":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","content + Moderator - Moderate":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","content + Moderator - List Management":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","textTranslation-Global":"https://api.cognitive.microsofttranslator.com/","textTranslation":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","documentTranslation":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","token":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","container":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","speech + Services Speech to Text v2.0":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","speech + Services Speech to Text v3.0":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","speech + Services Custom Voice":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","unified + Speech":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/","formRecognizer":"https://sdsfgfjgghghghghgg.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"identity":{"type":"None","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rg3ntnwukhoaitc5saemxqbl6edad3qgvuubgq7ltvefwoxyi2kdeodf3cfpbe72dt4/deletedAccounts/cs_cli_test_3iqj","name":"cs_cli_test_3iqj","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"0100c5b1-0000-3300-0000-60caee160000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:38:45.2733565Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:38:45.2733565Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:38:45.4661903Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgphufz2276f337wq3afjwdwv75hmewkizx6ursotxve4xaud6molzzja3okau6iwwu/deletedAccounts/cs_cli_test_2zwo","name":"cs_cli_test_2zwo","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"01000eb2-0000-3300-0000-60caeecf0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:41:38.925939Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:41:38.925939Z"},"location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:41:39.1623978Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgfg3jfl23ciyipm2otywe44dxwhiaehabp5us3gtfzgq7mlatgmrdvvlsr7axqcizn/deletedAccounts/cs_cli_test_mkh2","name":"cs_cli_test_mkh2","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"01001bb2-0000-3300-0000-60caef040000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:42:28.3970351Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:42:28.3970351Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:42:28.5815991Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"endpoints":{"face":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgydaputcct2x76leejiwkj63uyrjhfubkqu4imzjxmyhum3rcajn64l6dh77wnjd7d/deletedAccounts/cs_cli_test_fx3v","name":"cs_cli_test_fx3v","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"010023b2-0000-3300-0000-60caef390000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:43:32.827682Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:43:32.827682Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:43:37.0041892Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"0e0bad66-ee4b-4719-af4f-23ff84660ee4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgydaputcct2x76leejiwkj63uyrjhfubkqu4imzjxmyhum3rcajn64l6dh77wnjd7d/deletedAccounts/cs_cli_test_hdht","name":"cs_cli_test_hdht","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"010046b2-0000-3300-0000-60caef810000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:44:12.4765509Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:44:49.279948Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:44:16.9975105Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}},"identity":{"principalId":"555407aa-001b-4571-9e88-8380987dc41c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgk6pftat4ipbmz2vbtps6n4ndhvfhtwijeg44ol37mnm5holrtzqgtxepjuutzpect/deletedAccounts/cs_cli_test_zfjt","name":"cs_cli_test_zfjt","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"01004ab2-0000-3300-0000-60caef8b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:26.3514052Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:26.3514052Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-17T06:45:29.944576Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggpdifffns3yyc7tqrowzb6pxf3fq4kl352mibgeycrdrjzxe4krwokck5rx2ywjaw/deletedAccounts/cs_cli_test_otus","name":"cs_cli_test_otus","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10001b13-0000-3300-0000-60bc192d0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"19bb30f6-3c61-42b2-be76-05a4b28d94c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgk6pftat4ipbmz2vbtps6n4ndhvfhtwijeg44ol37mnm5holrtzqgtxepjuutzpect/deletedAccounts/cs_cli_test_thho","name":"cs_cli_test_thho","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"010051b2-0000-3300-0000-60caef920000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:34.3171684Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:37.097557Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:45:35.2508606Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgn4czfoyzrbzkpi4q4wt2l7psyiwt2xuhlh4c6dyr2auqfzrtca2w6xo4cskulmapu/deletedAccounts/cs_cli_test_wjwt","name":"cs_cli_test_wjwt","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10004613-0000-3300-0000-60bc19520000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:14.5083564Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:14.5083564Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestgjkzuim.cognitiveservices.azure.com/","dateCreated":"2021-06-06T00:39:14.9325476Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestgjkzuim","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestgjkzuim.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgn4czfoyzrbzkpi4q4wt2l7psyiwt2xuhlh4c6dyr2auqfzrtca2w6xo4cskulmapu/deletedAccounts/cs_cli_test_gt4h","name":"cs_cli_test_gt4h","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"10009f13-0000-3300-0000-60bc19950000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:50.1359784Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:40:22.0260177Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvo56hj3.cognitiveservices.azure.com/","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:50.3406677Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvo56hj3","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvo56hj3.cognitiveservices.azure.com/"}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgqyoyr6ovurqsnwlcjeyk54um6mc7azqa3wirehfopfd6p2wxplqg3ij45iu5zvtii/deletedAccounts/cs_cli_test_nu47","name":"cs_cli_test_nu47","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100027d-0000-3300-0000-60bd8dd10000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:08:32.6326457Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:08:32.6326457Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitesta6uk2fl.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:08:33.3527365Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitesta6uk2fl","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitesta6uk2fl.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rglze67xuvj3k6vode2ijliqlrsyomkjh36wqvfjo6leo23zsvyf3rgf5uosnxykjb7/deletedAccounts/cs_cli_test_6q43","name":"cs_cli_test_6q43","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100f27d-0000-3300-0000-60bd8e450000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:10:28.4431218Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:10:28.4431218Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestvwrvmt3.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:10:29.1647216Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestvwrvmt3","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestvwrvmt3.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgvickwpxv4ea6nty3ivsnpxim77puuo43ojnnud3mkdu7fxhcdarfn4p55z3zfp2rm/deletedAccounts/cs_cli_test_omg2","name":"cs_cli_test_omg2","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"11007e7e-0000-3300-0000-60bd8f070000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:13:42.3430172Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:13:42.3430172Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestaydklwc.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:13:43.0551822Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestaydklwc","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestaydklwc.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgquzdjt2zyexrpsyqeppivtiqztw3mafujym7qtgqoeolrow5vp3nu4lkdcrsk5zft/deletedAccounts/cs_cli_test_e5vk","name":"cs_cli_test_e5vk","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1100597f-0000-3300-0000-60bd8fcb0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-07T03:16:58.110578Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-07T03:16:58.110578Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitestook3tkx.cognitiveservices.azure.com/","dateCreated":"2021-06-07T03:16:58.8436443Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"customSubDomainName":"csclitestook3tkx","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard"}],"endpoints":{"formRecognizer":"https://csclitestook3tkx.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}]}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"7ed05c81-7e8c-45f2-95d5-39f0f276088b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rggbxo4ydvawje5woczferkoe3qqp5yp26xf2rnvcesk7g7zaswg3c3brcaxocz7n3j/deletedAccounts/cs_cli_test_w5we","name":"cs_cli_test_w5we","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"01006bb2-0000-3300-0000-60caefe70000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:58.326117Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:58.326117Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","dateCreated":"2021-06-17T06:45:58.5186213Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/resourceGroups/clitest.rgseqh6iopes6z4t7rjcmziwyu5srdez5f3wxkt3ukvborq7yl66eilf3vvyjg75scp/deletedAccounts/cogcuyclkd7d","name":"cogcuyclkd7d","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"01007bb2-0000-3300-0000-60caf02f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:47:40.0236149Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:48:12.7057996Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagnameudpol3tv":"tagvaluejplx4yt"},"properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:47:40.2103589Z","callRateLimit":{"rules":[{"key":"formrecognizer.custom.train","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/train","method":"*"}]},{"key":"formrecognizer.custom.copymodels","renewalPeriod":60,"count":1,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/copy","method":"*"}]},{"key":"formrecognizer.custom.models.get","renewalPeriod":60,"count":10,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"GET"}]},{"key":"formrecognizer.analyzeform","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"}]},{"key":"formrecognizer.analyzeform.result","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*"}],"endpoints":{"formRecognizer":"https://centraluseuap.api.cognitive.microsoft.com/"}}}]}' headers: cache-control: - no-cache content-length: - - '72959' + - '64455' content-type: - application/json; charset=utf-8 date: - - Mon, 07 Jun 2021 03:21:24 GMT + - Thu, 17 Jun 2021 06:49:35 GMT expires: - '-1' pragma: @@ -458,37 +628,37 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 423a8d38-6681-48e4-adbf-04a826da9471 - - a48208a0-a174-461f-8f9b-cb81f60932e7 - - a605fb10-2b3f-4858-8d5b-a9f180ce4602 - - a44da617-a019-4104-a447-e7c6a923c302 - - 10668915-f1b0-4071-ae5f-3014c0030b5d - - 08ea1279-9b69-4174-a4e0-979473b25354 - - 291d223a-ef9e-40e3-8da9-7058cb141132 - - daa6c2e0-2976-4067-8d95-197aea0d970b - - 66a28881-cad0-4bfd-a437-b626c1e8efbf - - 86e6de41-8142-4b10-b31f-253d5f6d79c7 - - 27ddd712-be83-4f99-b674-7bf04102fe59 - - a8756d7c-c683-42db-8257-6329c4c124d0 - - 05c1ad45-8043-4203-aef8-5398d5974849 - - b7a5a496-9730-4f47-a2ee-3f90192c02a3 - - 60606f60-d9b3-49c7-ad3a-335e35765b83 - - 104629db-8d97-4fa1-96f3-582c83d1d247 - - 15644a2f-7f42-4904-9ca1-84eddb657cbd - - 14991ae8-70a3-42a8-be0d-2b9715fee76c - - 7c493f45-70e8-4fcf-bb61-c4991278da8b - - 28cb851b-9af8-4274-919b-ae379d02f05d - - 99728415-1870-4010-86a0-49b1e118eaac - - aa87f30a-47ee-4897-afee-84b67f8bbbf9 - - e087bd9e-fdb3-430c-afa0-ce5336642980 - - 9006f089-de73-4d2a-84a9-38337cc6e71c - - 29c91750-6511-4d11-a123-cbd52faf35dc - - 08191e20-049c-43e4-98f0-965da7aa1fd2 - - 266d0f87-3587-4848-a804-4d878ea19319 - - 3a404733-5395-4ee2-b1f8-05c7f0f0981d - - 37de4050-6531-4521-8007-c4e8323275d5 - - 76bf4147-71f6-4281-9863-282455bb0ebd - - 156f0191-dc7a-4ca4-8418-f4d7049801da + - 77d119a9-c92d-4fc8-a9db-864374a3ee1a + - fc5139ab-139b-4630-98c2-ba21494d4ed1 + - a3734aa7-588e-4255-932b-c617d6506952 + - c08822c7-d41e-4258-be2c-702790a57446 + - 5b77f7d8-f033-4a12-bdfc-e51355a937a8 + - 44443160-437a-4309-8f01-25471f954abf + - ec7a0d4c-273d-4385-8383-05133798afb9 + - 59e2534c-f6cf-4019-b643-9752696cdd57 + - 4625f704-e1c4-46e6-a9ca-32bcd5d44a25 + - 7d4403f8-9a27-4527-b973-aa01db960605 + - e7a0632f-6139-4bd7-bcd7-7eb37be1dae6 + - 9a9eab4d-31bf-4229-a17a-e69e7f7dc6e5 + - 6f77505d-bf81-48d8-b97a-cf35cd5a4848 + - 079f3143-33a2-4697-960e-a197ecbe53bc + - 463f2e3c-ab92-4970-a718-39c60857ce0c + - e585fd9d-ec09-4fce-a2a6-2c8513a12421 + - 801668d6-a23f-455d-89fd-11b4c94d7243 + - d4a02d24-7a7f-4a3d-a643-916a100cd568 + - 137c6a53-de1d-4769-a1a9-3f61227f776b + - ab79bcd1-69e1-4a24-b38b-e9c7e6f39311 + - 1b609397-8464-410a-89e6-63828a92bf5b + - f707ad57-17fb-4b87-a112-7bfeded88fa4 + - 5b624de1-84b8-421d-b7a7-fe48ea6d25cd + - 6ef9e880-2a0d-4fc7-97e3-a0c44dfa4f59 + - aeacb8a8-4547-4b8a-a6f9-4b4d058fcb6f + - d5dfbd6b-08c3-4800-a1ae-b0b45b365698 + - 07f68759-3602-43f5-9384-cee04d832c2e + - d2a2e2e0-cb48-4f19-8cdd-9983ade8bbd9 + - cff7df51-31a2-4324-9245-3f279d3787ec + - 791d6917-f6d1-43ad-a00f-98e7110a8402 + - f64d7cd5-454c-4dba-a3c7-da39f34a00c6 status: code: 200 message: OK 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 646bc882ee3..05ea1f601b4 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 @@ -19,27 +19,27 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --storage --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001313-0000-3300-0000-60bc19250000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"010048b2-0000-3300-0000-60caef8a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:26.3514052Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:26.3514052Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-17T06:45:29.944576Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"19bb30f6-3c61-42b2-be76-05a4b28d94c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3373' + - '3487' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:01 GMT + - Thu, 17 Jun 2021 06:45:30 GMT etag: - - '"10001313-0000-3300-0000-60bc19250000"' + - '"010048b2-0000-3300-0000-60caef8a0000"' expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '342' + - '285' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -71,27 +71,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001313-0000-3300-0000-60bc19250000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:38:57.2067362Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:38:57.2067362Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:01.2201446Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"010048b2-0000-3300-0000-60caef8a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:26.3514052Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:26.3514052Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-17T06:45:29.944576Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"d35c003d-7856-4a67-a55b-5fc12246e3b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"19bb30f6-3c61-42b2-be76-05a4b28d94c6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3373' + - '3487' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:01 GMT + - Thu, 17 Jun 2021 06:45:30 GMT etag: - - '"10001313-0000-3300-0000-60bc19250000"' + - '"010048b2-0000-3300-0000-60caef8a0000"' expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '21' status: code: 200 message: OK @@ -127,8 +127,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -140,7 +139,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:39:03 GMT + - Thu, 17 Jun 2021 06:45:32 GMT expires: - '-1' pragma: @@ -152,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '92' + - '88' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -177,27 +176,27 @@ interactions: ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001713-0000-3300-0000-60bc192a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:04.6059666Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"01004cb2-0000-3300-0000-60caef8f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:34.3171684Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:34.3171684Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-17T06:45:35.2508606Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"7ed05c81-7e8c-45f2-95d5-39f0f276088b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3201' + - '3316' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:06 GMT + - Thu, 17 Jun 2021 06:45:35 GMT etag: - - '"10001713-0000-3300-0000-60bc192a0000"' + - '"01004cb2-0000-3300-0000-60caef8f0000"' expires: - '-1' pragma: @@ -209,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '362' + - '242' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -229,27 +228,27 @@ interactions: ParameterSetName: - -n -g --storage User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001713-0000-3300-0000-60bc192a0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:04.6059666Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"01004cb2-0000-3300-0000-60caef8f0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:34.3171684Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:34.3171684Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","dateCreated":"2021-06-17T06:45:35.2508606Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"},"provisioningState":"Succeeded"},"identity":{"principalId":"7ed05c81-7e8c-45f2-95d5-39f0f276088b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3201' + - '3316' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:06 GMT + - Thu, 17 Jun 2021 06:45:36 GMT etag: - - '"10001713-0000-3300-0000-60bc192a0000"' + - '"01004cb2-0000-3300-0000-60caef8f0000"' expires: - '-1' pragma: @@ -265,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '11' status: code: 200 message: OK @@ -288,27 +287,27 @@ interactions: ParameterSetName: - -n -g --storage User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001913-0000-3300-0000-60bc192b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"01004eb2-0000-3300-0000-60caef910000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:34.3171684Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:37.097557Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:45:35.2508606Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"7ed05c81-7e8c-45f2-95d5-39f0f276088b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3373' + - '3487' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:07 GMT + - Thu, 17 Jun 2021 06:45:37 GMT etag: - - '"10001913-0000-3300-0000-60bc192b0000"' + - '"01004eb2-0000-3300-0000-60caef910000"' expires: - '-1' pragma: @@ -324,7 +323,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '105' + - '96' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -344,27 +343,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 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":"\"10001913-0000-3300-0000-60bc192b0000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-06T00:39:04.6059666Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-06T00:39:07.6946204Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-06T00:39:06.0731115Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech - Services Speech to Text":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + 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":"\"01004eb2-0000-3300-0000-60caef910000\"","systemData":{"createdBy":"yuanyang@microsoft.com","createdByType":"User","createdAt":"2021-06-17T06:45:34.3171684Z","lastModifiedBy":"yuanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-17T06:45:37.097557Z"},"location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","dateCreated":"2021-06-17T06:45:35.2508606Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":false,"matchPatterns":[{"path":"*","method":"*"}]}]},"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"endpoints":{"speech + Services Speech to Text v2.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech + Services Speech to Text v3.0":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","speech Services Custom Voice":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","unified - Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"72b8ecda-3c0c-4807-8fd7-d014527f0828","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' + Speech":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken"}},"identity":{"principalId":"7ed05c81-7e8c-45f2-95d5-39f0f276088b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","userAssignedIdentities":{}}}' headers: cache-control: - no-cache content-length: - - '3373' + - '3487' content-type: - application/json; charset=utf-8 date: - - Sun, 06 Jun 2021 00:39:07 GMT + - Thu, 17 Jun 2021 06:45:38 GMT etag: - - '"10001913-0000-3300-0000-60bc192b0000"' + - '"01004eb2-0000-3300-0000-60caef910000"' expires: - '-1' pragma: @@ -380,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '73' + - '10' status: code: 200 message: OK @@ -400,8 +399,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.13.0 azsdk-python-mgmt-cognitiveservices/11.0.0b1 Python/3.7.8 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.25.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) 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=2021-04-30 response: @@ -413,7 +411,7 @@ interactions: content-length: - '0' date: - - Sun, 06 Jun 2021 00:39:10 GMT + - Thu, 17 Jun 2021 06:45:39 GMT expires: - '-1' pragma: @@ -425,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '88' + - '85' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: From 96c1125a68e9466e721159c1553f9fb70ff2fd75 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Thu, 17 Jun 2021 01:23:02 -0700 Subject: [PATCH 5/7] fix style issue. --- .../cli/command_modules/cognitiveservices/_params.py | 3 ++- .../command_modules/cognitiveservices/commands.py | 12 +++++++++--- .../cli/command_modules/cognitiveservices/custom.py | 1 - 3 files changed, 11 insertions(+), 5 deletions(-) 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 7c62acb31ce..7c8ef69d15a 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -147,7 +147,8 @@ def load_arguments(self, _): c.argument('kind', help='the API name of cognitive services account', completer=kind_completer) c.argument('tags', tags_type) - c.argument('key_name', required=True, help='Key name to generate', choices=CaseInsensitiveList(['Key1', 'Key2'])) + c.argument('key_name', required=True, help='Key name to generate', + choices=CaseInsensitiveList(['Key1', 'Key2'])) c.argument('api_properties', api_properties_type) c.argument('custom_domain', help='User domain assigned to the account. Name is the CNAME source.') c.argument('storage', help='The storage accounts for this resource, in JSON array format.') 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 62b9d7e8249..9b4e1c3d330 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py @@ -20,9 +20,15 @@ def load_command_table(self, _): g.show_command('show', 'get') g.custom_command('update', 'update') g.custom_command('list', 'list_resources') - g.show_command('show-deleted', 'get', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) - g.command('list-deleted', 'list', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) - g.command('purge', 'begin_purge', operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', client_factory=cf_deleted_accounts) + g.show_command('show-deleted', 'get', + operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', + client_factory=cf_deleted_accounts) + g.command('list-deleted', 'list', + operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', + client_factory=cf_deleted_accounts) + g.command('purge', 'begin_purge', + operations_tmpl='azure.mgmt.cognitiveservices.operations#DeletedAccountsOperations.{}', + client_factory=cf_deleted_accounts) g.custom_command('recover', 'recover') g.custom_command('list-skus', 'list_skus') g.custom_command('list-usage', 'list_usages') 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 585d8c16a9f..db59f003fdc 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -14,7 +14,6 @@ AccountProperties as CognitiveServicesAccountProperties, ApiProperties as CognitiveServicesAccountApiProperties,\ Identity, ResourceIdentityType as IdentityType from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus -from azure.core.polling import AsyncLROPoller, LROPoller logger = get_logger(__name__) From 71a4b7258b7dd538aa0440db4ab2319f85646f40 Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Fri, 18 Jun 2021 17:23:59 -0700 Subject: [PATCH 6/7] fix comments --- .../azure/cli/command_modules/cognitiveservices/_params.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 7c8ef69d15a..56883dfc2c4 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -9,6 +9,7 @@ from azure.cli.core.commands.parameters import ( tags_type, + get_enum_type, resource_group_name_type, get_resource_name_completion_list, get_location_type) @@ -19,6 +20,8 @@ from azure.cli.command_modules.cognitiveservices._client_factory import cf_resource_skus +from azure.mgmt.cognitiveservices.models import KeyName + logger = get_logger(__name__) name_arg_type = CLIArgumentType(options_list=['--name', '-n'], metavar='NAME') @@ -147,8 +150,7 @@ def load_arguments(self, _): c.argument('kind', help='the API name of cognitive services account', completer=kind_completer) c.argument('tags', tags_type) - c.argument('key_name', required=True, help='Key name to generate', - choices=CaseInsensitiveList(['Key1', 'Key2'])) + c.argument('key_name', required=True, help='Key name to generate', arg_type=get_enum_type(KeyName)) c.argument('api_properties', api_properties_type) c.argument('custom_domain', help='User domain assigned to the account. Name is the CNAME source.') c.argument('storage', help='The storage accounts for this resource, in JSON array format.') From 7ec653623ef535c00c5ff6d3dd53c19e45e6a9df Mon Sep 17 00:00:00 2001 From: Yang Yuan Date: Fri, 18 Jun 2021 17:25:17 -0700 Subject: [PATCH 7/7] remove unused import --- .../azure/cli/command_modules/cognitiveservices/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 56883dfc2c4..4d9bc47d71b 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- import re -from knack.arguments import CLIArgumentType, CaseInsensitiveList +from knack.arguments import CLIArgumentType from knack.log import get_logger from azure.cli.core.commands.parameters import (