From efb2f359df9035a5b6b1989b763cbe94962bb171 Mon Sep 17 00:00:00 2001 From: Jiefeng Chen <51037443+BigCat20196@users.noreply.github.com> Date: Tue, 15 Jun 2021 20:23:56 +0800 Subject: [PATCH] {Cognitive Services} Adopt track2 SDK, azure-mgmt-cognitiveservices==12.0.0 (#18354) * Update test link * update requirements * Fix tests * Update cognitiviceservices==12.0.0 * Fix identity * Fix tests * Fix tests(delete unnecessary import) * Fix tests(sku) * Upload test_recordings --- .../cognitiveservices/commands.py | 4 +- .../cognitiveservices/custom.py | 62 +- ...ognitiveservices_account_capabilities.yaml | 169 +- ..._cognitiveservices_account_list_kinds.yaml | 13 +- ...t_cognitiveservices_account_list_skus.yaml | 26 +- ...tiveservices_account_list_skus_legacy.yaml | 150 +- ..._cognitiveservices_account_list_usage.yaml | 206 +- ...ervices_account_public_network_access.yaml | 178 +- ...gnitiveservices_create_api_properties.yaml | 98 +- .../test_cognitiveservices_crud.yaml | 266 ++- .../test_cognitiveservices_custom_domain.yaml | 455 +++- .../test_cognitiveservices_encryption.yaml | 573 ++--- .../test_cognitiveservices_identity.yaml | 555 +++-- ...eservices_identity_assign_when_create.yaml | 338 +-- .../test_cognitiveservices_network_rules.yaml | 1995 ++++++++++++----- ...st_cognitiveservices_private_endpoint.yaml | 477 ++-- ...eservices_private_endpoint_connection.yaml | 762 +++++-- ..._cognitiveservices_user_owned_storage.yaml | 172 +- .../tests/latest/test_api_properties.py | 4 + .../tests/latest/test_byox.py | 23 +- .../latest/test_cognitiveservices_command.py | 3 +- .../tests/latest/test_custom_domain.py | 5 + .../tests/latest/test_identity.py | 16 +- .../tests/latest/test_private_endpoint.py | 4 +- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 28 files changed, 4237 insertions(+), 2325 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py index 0e63beae92a..682af74a559 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py @@ -15,8 +15,8 @@ def load_command_table(self, _): with self.command_group('cognitiveservices account', mgmt_type) as g: g.custom_command('create', 'create') - g.command('delete', 'delete') - g.show_command('show', 'get_properties') + g.command('delete', 'begin_delete') + g.show_command('show', 'get') g.custom_command('update', 'update') g.custom_command('list', 'list_resources') g.custom_command('list-skus', 'list_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 da66a4eee37..94f96b0d69a 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -9,10 +9,10 @@ from knack.util import CLIError from knack.log import get_logger -from azure.mgmt.cognitiveservices.models import CognitiveServicesAccount, Sku,\ +from azure.mgmt.cognitiveservices.models import Account, Sku,\ VirtualNetworkRule, IpRule, NetworkRuleSet, NetworkRuleAction,\ - CognitiveServicesAccountProperties, CognitiveServicesAccountApiProperties,\ - Identity, IdentityType + AccountProperties, ApiProperties,\ + Identity, ResourceIdentityType from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus @@ -29,7 +29,7 @@ def list_usages(client, resource_group_name, account_name): """ List usages for Azure Cognitive Services account. """ - return client.get_usages(resource_group_name, account_name).value + return client.list_usages(resource_group_name, account_name).value def list_kinds(client): @@ -109,16 +109,16 @@ def create( sku = Sku(name=sku_name) - properties = CognitiveServicesAccountProperties() + properties = AccountProperties() if api_properties is not None: - api_properties = CognitiveServicesAccountApiProperties.deserialize(api_properties) + api_properties = ApiProperties.deserialize(api_properties) properties.api_properties = api_properties if custom_domain: properties.custom_sub_domain_name = custom_domain - params = CognitiveServicesAccount(sku=sku, kind=kind, location=location, - properties=properties, tags=tags) + params = Account(sku=sku, kind=kind, location=location, + properties=properties, tags=tags) if assign_identity: - params.identity = Identity(type=IdentityType.system_assigned) + params.identity = Identity(type=ResourceIdentityType.system_assigned) if storage is not None: params.properties.user_owned_storage = json.loads(storage) @@ -126,25 +126,25 @@ def create( if encryption is not None: params.properties.encryption = json.loads(encryption) - return client.create(resource_group_name, account_name, params) + return client.begin_create(resource_group_name, account_name, params) def update(client, resource_group_name, account_name, sku_name=None, custom_domain=None, tags=None, api_properties=None, storage=None, encryption=None): if sku_name is None: - sa = client.get_properties(resource_group_name, account_name) + sa = client.get(resource_group_name, account_name) sku_name = sa.sku.name sku = Sku(name=sku_name) - properties = CognitiveServicesAccountProperties() + properties = AccountProperties() if api_properties is not None: - api_properties = CognitiveServicesAccountApiProperties.deserialize(api_properties) + api_properties = ApiProperties.deserialize(api_properties) properties.api_properties = api_properties if custom_domain: properties.custom_sub_domain_name = custom_domain - params = CognitiveServicesAccount(sku=sku, properties=properties, tags=tags) + params = Account(sku=sku, properties=properties, tags=tags) if storage is not None: params.properties.user_owned_storage = json.loads(storage) @@ -152,7 +152,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.update(resource_group_name, account_name, params) + return client.begin_update(resource_group_name, account_name, params) def default_network_acls(): @@ -164,7 +164,7 @@ def default_network_acls(): def list_network_rules(client, resource_group_name, account_name): - sa = client.get_properties(resource_group_name, account_name) + sa = client.get(resource_group_name, account_name) rules = sa.properties.network_acls if rules is None: rules = default_network_acls() @@ -173,7 +173,7 @@ def list_network_rules(client, resource_group_name, account_name): def add_network_rule(client, resource_group_name, account_name, subnet=None, vnet_name=None, ip_address=None): # pylint: disable=unused-argument - sa = client.get_properties(resource_group_name, account_name) + sa = client.get(resource_group_name, account_name) rules = sa.properties.network_acls if rules is None: rules = default_network_acls() @@ -191,16 +191,16 @@ def add_network_rule(client, resource_group_name, account_name, subnet=None, rules.ip_rules = [] rules.ip_rules.append(IpRule(value=ip_address)) - properties = CognitiveServicesAccountProperties() + properties = AccountProperties() properties.network_acls = rules - params = CognitiveServicesAccount(properties=properties) + params = Account(properties=properties) - return client.update(resource_group_name, account_name, params) + 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, vnet_name=None): # pylint: disable=unused-argument - sa = client.get_properties(resource_group_name, account_name) + sa = client.get(resource_group_name, account_name) rules = sa.properties.network_acls if rules is None: # nothing to update, but return the object @@ -212,26 +212,26 @@ 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 = CognitiveServicesAccountProperties() + properties = AccountProperties() properties.network_acls = rules - params = CognitiveServicesAccount(properties=properties) + params = Account(properties=properties) - return client.update(resource_group_name, account_name, params) + return client.begin_update(resource_group_name, account_name, params) def identity_assign(client, resource_group_name, account_name): - params = CognitiveServicesAccount() - params.identity = Identity(type=IdentityType.system_assigned) - sa = client.update(resource_group_name, account_name, params) + params = Account() + params.identity = Identity(type=ResourceIdentityType.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 = CognitiveServicesAccount() - params.identity = Identity(type=IdentityType.none) - client.update(resource_group_name, account_name, params) + params = Account() + params.identity = Identity(type=ResourceIdentityType.none) + client.begin_update(resource_group_name, account_name, params) def identity_show(client, resource_group_name, account_name): - sa = client.get_properties(resource_group_name, account_name) + sa = client.get(resource_group_name, account_name) return sa.identity if sa.identity else {} 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 f37541150eb..9b4355f2b3c 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "FormRecognizer", "location": "centraluseuap", "properties": {}, - "sku": {"name": "F0"}}' + body: '{"kind": "FormRecognizer", "sku": {"name": "F0"}, "location": "centraluseuap", + "properties": {}}' headers: Accept: - application/json @@ -14,49 +14,144 @@ interactions: Content-Length: - '96' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000b419-0000-3300-0000-5ed6c4420000\"","location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"096ee53fd3b540edb55d0749fbc334cd","dateCreated":"2020-06-02T21:27:30.2180884Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CustomerManagedKey"}],"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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '723' + - '1396' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:27:30 GMT + - Tue, 15 Jun 2021 01:49:42 GMT etag: - - '"0000b419-0000-3300-0000-5ed6c4420000"' + - '"00003578-0000-3300-0000-60c807350000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '522' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET 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: @@ -71,44 +166,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000b419-0000-3300-0000-5ed6c4420000\"","location":"centraluseuap","sku":{"name":"F0"},"kind":"FormRecognizer","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"096ee53fd3b540edb55d0749fbc334cd","dateCreated":"2020-06-02T21:27:30.2180884Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CustomerManagedKey"}],"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":"\"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: - - '723' + - '1397' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:27:31 GMT + - Tue, 15 Jun 2021 01:50:23 GMT etag: - - '"0000b419-0000-3300-0000-5ed6c4420000"' + - '"00003678-0000-3300-0000-60c807360000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '9' status: code: 200 message: OK @@ -128,12 +218,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -143,23 +230,21 @@ interactions: content-length: - '0' date: - - Tue, 02 Jun 2020 21:27:33 GMT + - Tue, 15 Jun 2021 01:50:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '89' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK 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 7d20df45963..da130b5446f 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,24 +11,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/skus?api-version=2017-04-18 + 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"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkAnalysis","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"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":"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":[]}]}' headers: cache-control: - no-cache content-length: - - '135832' + - '201739' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:33:26 GMT + - Tue, 15 Jun 2021 01:49:35 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 bc52a9716e9..c3353065b31 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,24 +13,21 @@ interactions: ParameterSetName: - --kind User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/skus?api-version=2017-04-18 + 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"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkAnalysis","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"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":"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":[]}]}' headers: cache-control: - no-cache content-length: - - '135832' + - '201739' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:32:37 GMT + - Tue, 15 Jun 2021 01:49:35 GMT expires: - '-1' pragma: @@ -58,24 +55,21 @@ interactions: ParameterSetName: - --kind --location User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/skus?api-version=2017-04-18 + 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"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S5","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S6","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S7","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S8","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S9","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S10","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S11","tier":"Standard","kind":"Bing.Search.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.Autosuggest.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"Bing.CustomSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.SpellCheck.v7","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"Bing.EntitySearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Bing.CustomVisualSearch","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"InkRecognizer","locations":["GLOBAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["BRAZILSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F1","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"LUIS.Authoring","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"InkAnalysis","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANEAST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ImmersiveReader","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["JAPANWEST"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["KOREACENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["FRANCECENTRAL"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["NORTHCENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHAFRICANORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P1","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P2","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P3","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P4","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P5","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"P6","tier":"Premium","kind":"ComputerVision","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"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":"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":[]}]}' headers: cache-control: - no-cache content-length: - - '135832' + - '201739' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:32:38 GMT + - Tue, 15 Jun 2021 01:49:35 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 e65935da2bf..d19584d33a5 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", "location": "westeurope", "properties": {}, "sku": {"name": - "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westeurope", "properties": + {}}' headers: Accept: - application/json @@ -14,49 +14,144 @@ interactions: Content-Length: - '83' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -n -g --kind --sku -l + - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"30008f3c-0000-0d00-0000-5ed75f510000\"","location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"a5790070495349798f5b0477ea146003","dateCreated":"2020-06-03T08:29:04.9719683Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '660' + - '1434' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:05 GMT + - Tue, 15 Jun 2021 01:49:41 GMT etag: - - '"30008f3c-0000-0d00-0000-5ed75f510000"' + - '"09004754-0000-0d00-0000-60c807340000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '388' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1196' 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: @@ -71,12 +166,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/skus?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/skus?api-version=2021-04-30 response: body: string: '{"value":[{"resourceType":"Microsoft.CognitiveServices/accounts","sku":{"name":"F0","tier":"Free"}},{"resourceType":"Microsoft.CognitiveServices/accounts","sku":{"name":"S0","tier":"Standard"}}]}' @@ -88,25 +180,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:06 GMT + - Tue, 15 Jun 2021 01:50:14 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '11' 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 e8f1c97dd82..662b55074a3 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,7 +1,7 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "location": "westeurope", "properties": {}, "sku": - {"name": "S0"}}' + body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westeurope", + "properties": {}}' headers: Accept: - application/json @@ -12,51 +12,198 @@ interactions: Connection: - keep-alive Content-Length: - - '92' + - '91' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"30009f3c-0000-0d00-0000-5ed75f560000\"","location":"westeurope","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"b1424536d3864cc8801514f3bddd5550","dateCreated":"2020-06-03T08:29:10.3446223Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '669' + - '2943' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:10 GMT + - Tue, 15 Jun 2021 01:50:46 GMT etag: - - '"30009f3c-0000-0d00-0000-5ed75f560000"' + - '"09006a54-0000-0d00-0000-60c807760000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '521' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '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 + 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: @@ -71,42 +218,37 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/usages?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/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":"2020-07-01T00:00:00Z"}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '237' + - '12' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:11 GMT + - Tue, 15 Jun 2021 01:51:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '95' 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 bedb01e2321..ca8ededb35b 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "location": "centraluseuap", "properties": {}, "sku": - {"name": "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "centraluseuap", "properties": + {}}' headers: Accept: - application/json @@ -14,32 +14,29 @@ interactions: Content-Length: - '86' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001114-0000-3300-0000-5f9907aa0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"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":"\"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"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c3133b4c-370f-4fca-9854-2480e0816a71?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '1084' + - '1443' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:54:51 GMT + - Tue, 15 Jun 2021 01:49:42 GMT etag: - - '"02001114-0000-3300-0000-5f9907aa0000"' + - '"00003478-0000-3300-0000-60c807350000"' expires: - '-1' pragma: @@ -51,12 +48,110 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '390' + - '528' 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.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: @@ -71,26 +166,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001514-0000-3300-0000-5f9907ab0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"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":"\"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: - - '1085' + - '1444' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:54:53 GMT + - Tue, 15 Jun 2021 01:50:14 GMT etag: - - '"02001514-0000-3300-0000-5f9907ab0000"' + - '"00003e78-0000-3300-0000-60c8073c0000"' expires: - '-1' pragma: @@ -106,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '25' + - '9' status: code: 200 message: OK @@ -124,26 +216,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02001514-0000-3300-0000-5f9907ab0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"767b57d3a0fd430d948cbe4797d38965","dateCreated":"2020-10-28T05:54:49.952909Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"face/v1.0/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"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":"\"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: - - '1085' + - '1444' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:55:09 GMT + - Tue, 15 Jun 2021 01:50:33 GMT etag: - - '"02001514-0000-3300-0000-5f9907ab0000"' + - '"00003e78-0000-3300-0000-60c8073c0000"' expires: - '-1' pragma: @@ -159,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '23' + - '9' status: code: 200 message: OK @@ -179,28 +268,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7a1ca6bd-04db-484a-bee7-bbaf78eb48c9?api-version=2017-04-18 cache-control: - no-cache content-length: - '0' date: - - Wed, 28 Oct 2020 05:55:11 GMT + - Tue, 15 Jun 2021 01:50:40 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/7a1ca6bd-04db-484a-bee7-bbaf78eb48c9?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: @@ -210,10 +292,10 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '343' + - '79' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 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 a91c1801ed2..baf3d9acfd4 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 @@ -1,8 +1,7 @@ interactions: - request: - body: '{"kind": "QnAMaker", "location": "westus", "properties": {"apiProperties": - {"qnaRuntimeEndpoint": "https://cs-cli-test-qnamaker.azurewebsites.net"}}, "sku": - {"name": "S0"}}' + body: '{"kind": "QnAMaker", "sku": {"name": "S0"}, "location": "westus", "properties": + {"apiProperties": {"qnaRuntimeEndpoint": "https://cs-cli-test-qnamaker.azurewebsites.net"}}}' headers: Accept: - application/json @@ -15,46 +14,41 @@ interactions: Content-Length: - '172' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f00ab00-0000-0700-0000-5ed75f460000\"","location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/qnamaker/v4.0","internalId":"adb5c76e92bf4638ac5c7ee93d96d4e7","dateCreated":"2020-06-03T08:28:53.9336974Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '878' + - '1202' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:28:54 GMT + - Tue, 15 Jun 2021 01:49:40 GMT etag: - - '"0f00ab00-0000-0700-0000-5ed75f460000"' + - '"580026fc-0000-0700-0000-60c807340000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '618' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1196' status: code: 201 message: Created @@ -74,12 +68,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -89,30 +80,27 @@ interactions: content-length: - '0' date: - - Wed, 03 Jun 2020 08:28:54 GMT + - Tue, 15 Jun 2021 01:49:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '62' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: '{"kind": "QnAMaker", "location": "westus", "properties": {"apiProperties": - {"qnaRuntimeEndpoint": "https://cs-cli-test-qnamaker.azurewebsites.net"}}, "sku": - {"name": "S0"}}' + body: '{"kind": "QnAMaker", "sku": {"name": "S0"}, "location": "westus", "properties": + {"apiProperties": {"qnaRuntimeEndpoint": "https://cs-cli-test-qnamaker.azurewebsites.net"}}}' headers: Accept: - application/json @@ -125,46 +113,41 @@ interactions: Content-Length: - '172' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --api-properties --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f00b500-0000-0700-0000-5ed75f480000\"","location":"westus","sku":{"name":"S0"},"kind":"QnAMaker","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/qnamaker/v4.0","internalId":"c5c453efbaf74d23b9c2b63ff9cf7d17","dateCreated":"2020-06-03T08:28:56.4064546Z","apiProperties":{"qnaRuntimeEndpoint":"https://cs-cli-test-qnamaker.azurewebsites.net"},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '878' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:28:55 GMT + - Tue, 15 Jun 2021 01:49:56 GMT etag: - - '"0f00b500-0000-0700-0000-5ed75f480000"' + - '"580070fc-0000-0700-0000-60c807420000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '544' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1198' status: code: 201 message: Created @@ -184,12 +167,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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: '' @@ -199,23 +179,21 @@ interactions: content-length: - '0' date: - - Wed, 03 Jun 2020 08:28:57 GMT + - Tue, 15 Jun 2021 01:50:03 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '71' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK 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 156b4814fe9..4490854c34a 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", "location": "westeurope", "properties": {}, "sku": {"name": - "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westeurope", "properties": + {}}' headers: Accept: - application/json @@ -14,49 +14,144 @@ interactions: Content-Length: - '83' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -n -g --kind --sku -l + - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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":"\"3000d63c-0000-0d00-0000-5ed75f5b0000\"","location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"74c868015396497e80b9434e52a41cd3","dateCreated":"2020-06-03T08:29:15.6086337Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '652' + - '1424' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:15 GMT + - Tue, 15 Jun 2021 01:50:58 GMT etag: - - '"3000d63c-0000-0d00-0000-5ed75f5b0000"' + - '"09006e54-0000-0d00-0000-60c807800000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '325' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET 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: @@ -71,49 +166,45 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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":"\"3000d63c-0000-0d00-0000-5ed75f5b0000\"","location":"westeurope","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"74c868015396497e80b9434e52a41cd3","dateCreated":"2020-06-03T08:29:15.6086337Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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: - - '652' + - '1425' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:16 GMT + - Tue, 15 Jun 2021 01:51:29 GMT etag: - - '"3000d63c-0000-0d00-0000-5ed75f5b0000"' + - '"09006f54-0000-0d00-0000-60c807810000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '7' status: code: 200 message: OK - request: - body: '{"properties": {}, "sku": {"name": "S0"}, "tags": {"tagname000003": "tagvalue000004"}}' + body: '{"sku": {"name": "S0"}, "tags": {"tagname000003": "tagvalue000004"}, "properties": + {}}' headers: Accept: - application/json @@ -126,50 +217,45 @@ interactions: Content-Length: - '89' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --sku --tags User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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/cog000002?api-version=2017-04-18 + 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":"\"3000e63c-0000-0d00-0000-5ed75f600000\"","location":"westeurope","sku":{"name":"S0"},"kind":"Face","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"74c868015396497e80b9434e52a41cd3","dateCreated":"2020-06-03T08:29:15.6086337Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}' + 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/"}}}' headers: cache-control: - no-cache content-length: - - '697' + - '1471' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:20 GMT + - Tue, 15 Jun 2021 01:51:34 GMT etag: - - '"3000e63c-0000-0d00-0000-5ed75f600000"' + - '"09007d54-0000-0d00-0000-60c807a40000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '33' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1198' status: code: 200 message: OK @@ -189,15 +275,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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":"07b99e6d6b9440c0941d4a216d8c4d30","key2":"950cabf5173348df9cab574455aa372e"}' + string: '{"key1":"6272066338b3412aa1efece012e61abd","key2":"101b664e1d10499a8096ea55e23a40c3"}' headers: cache-control: - no-cache @@ -206,32 +289,30 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:21 GMT + - Tue, 15 Jun 2021 01:51:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '43' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: '{"keyName": "Key1"}' + body: '{"keyName": "key1"}' headers: Accept: - application/json @@ -244,19 +325,16 @@ interactions: Content-Length: - '19' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --key-name User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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":"29496f3c4bd643b5927f174ed4cd428c","key2":"950cabf5173348df9cab574455aa372e"}' + string: '{"key1":"c3e9b715c1a94509832d277ac682e813","key2":"101b664e1d10499a8096ea55e23a40c3"}' headers: cache-control: - no-cache @@ -265,27 +343,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:23 GMT + - Tue, 15 Jun 2021 01:51:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '68' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -303,42 +379,37 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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?api-version=2017-04-18 + 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":"\"3000ec3c-0000-0d00-0000-5ed75f630000\"","location":"westeurope","sku":{"name":"S0"},"kind":"Face","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"74c868015396497e80b9434e52a41cd3","dateCreated":"2020-06-03T08:29:15.6086337Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}]}' + 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/"}}}]}' headers: cache-control: - no-cache content-length: - - '709' + - '1483' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:24 GMT + - Tue, 15 Jun 2021 01:51:39 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '15' status: code: 200 message: OK @@ -358,12 +429,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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: '' @@ -373,23 +441,21 @@ interactions: content-length: - '0' date: - - Wed, 03 Jun 2020 08:29:26 GMT + - Tue, 15 Jun 2021 01:51:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '68' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + - '14997' 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 3c77b8f194a..3b6b8c51460 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", "location": "westus", "properties": {"customSubDomainName": - "csclitest000003"}, "sku": {"name": "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": + {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -14,49 +14,144 @@ interactions: Content-Length: - '120' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -n -g --kind --sku -l --custom-domain + - -n -g --kind --sku -l --yes --custom-domain User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f008b01-0000-0700-0000-5ed75f6a0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"338dd37ad9eb4ccdb5ef74a734a1041f","dateCreated":"2020-06-03T08:29:30.0577349Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '703' + - '1483' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:30 GMT + - Tue, 15 Jun 2021 01:50:15 GMT etag: - - '"0f008b01-0000-0700-0000-5ed75f6a0000"' + - '"5800effc-0000-0700-0000-60c807550000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '960' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '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: @@ -73,12 +168,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -88,29 +180,27 @@ interactions: content-length: - '0' date: - - Wed, 03 Jun 2020 08:29:32 GMT + - Tue, 15 Jun 2021 01:50:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '69' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: '{"kind": "Face", "location": "westus", "properties": {}, "sku": {"name": - "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": + {}}' headers: Accept: - application/json @@ -123,49 +213,144 @@ interactions: Content-Length: - '79' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -n -g --kind --sku -l + - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f009d01-0000-0700-0000-5ed75f6e0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","internalId":"ccd15bd1e914448a873e92289ed663f5","dateCreated":"2020-06-03T08:29:34.0136979Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '652' + - '1422' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:33 GMT + - Tue, 15 Jun 2021 01:51:04 GMT etag: - - '"0f009d01-0000-0700-0000-5ed75f6e0000"' + - '"580033fe-0000-0700-0000-60c807870000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '393' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '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.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: @@ -180,50 +365,44 @@ interactions: ParameterSetName: - -n -g --custom-domain User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f009d01-0000-0700-0000-5ed75f6e0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://westus.api.cognitive.microsoft.com/","internalId":"ccd15bd1e914448a873e92289ed663f5","dateCreated":"2020-06-03T08:29:34.0136979Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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: - - '652' + - '1423' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:34 GMT + - Tue, 15 Jun 2021 01:51:38 GMT etag: - - '"0f009d01-0000-0700-0000-5ed75f6e0000"' + - '"580039fe-0000-0700-0000-60c807880000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '8' status: code: 200 message: OK - request: - body: '{"properties": {"customSubDomainName": "csclitest000003"}, "sku": {"name": - "S0"}}' + body: '{"sku": {"name": "S0"}, "properties": {"customSubDomainName": "csclitest000005"}}' headers: Accept: - application/json @@ -236,50 +415,143 @@ interactions: Content-Length: - '82' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --custom-domain User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/"}}}' + 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 + cache-control: + - no-cache + content-length: + - '1483' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Jun 2021 01:51:39 GMT + etag: + - '"580012ff-0000-0700-0000-60c807ab0000"' + 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 + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '723' + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0f00a801-0000-0700-0000-5ed75f700000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"ccd15bd1e914448a873e92289ed663f5","dateCreated":"2020-06-03T08:29:34.0136979Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"}}' + 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: - - '703' + - '304' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jun 2020 08:29:35 GMT + - 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: - - '"0f00a801-0000-0700-0000-5ed75f700000"' + - '"580022ff-0000-0700-0000-60c807ad0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '8' status: code: 200 message: OK @@ -299,12 +571,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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: '' @@ -314,23 +583,21 @@ interactions: content-length: - '0' date: - - Wed, 03 Jun 2020 08:29:37 GMT + - Tue, 15 Jun 2021 01:52:15 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '68' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + - '14998' 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 6c1a3849bf6..b5e4e2add94 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,8 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "location": "centraluseuap", "properties": {"encryption": - {"keySource": "Microsoft.CognitiveServices"}}, "sku": {"name": "E0"}, "identity": - {"type": "SystemAssigned"}}' + body: '{"kind": "Face", "sku": {"name": "E0"}, "identity": {"type": "SystemAssigned"}, + "location": "centraluseuap", "properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}}' headers: Accept: - application/json @@ -15,48 +14,43 @@ interactions: Content-Length: - '184' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0600fff3-0000-3300-0000-5eddaa1a0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/51b81f38-0c36-4298-9000-9f8d62152334?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '880' + - '1698' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:01:46 GMT + - Tue, 15 Jun 2021 01:49:47 GMT etag: - - '"0600fff3-0000-3300-0000-5eddaa1a0000"' + - '"00003978-0000-3300-0000-60c807390000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '236' x-ms-ratelimit-remaining-subscription-writes: - '1199' - x-powered-by: - - ASP.NET status: code: 201 message: Created @@ -64,54 +58,47 @@ 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 --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060004f4-0000-3300-0000-5eddaa1b0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '880' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:02:01 GMT - etag: - - '"060004f4-0000-3300-0000-5eddaa1b0000"' + - Tue, 15 Jun 2021 01:50:17 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '94' status: code: 200 message: OK @@ -119,54 +106,47 @@ 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 --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060027f4-0000-3300-0000-5eddaa3a0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '880' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:02:17 GMT - etag: - - '"060027f4-0000-3300-0000-5eddaa3a0000"' + - Tue, 15 Jun 2021 01:50:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '44' status: code: 200 message: OK @@ -174,54 +154,47 @@ 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 --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060027f4-0000-3300-0000-5eddaa3a0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '880' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:02:33 GMT - etag: - - '"060027f4-0000-3300-0000-5eddaa3a0000"' + - Tue, 15 Jun 2021 01:51:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '52' status: code: 200 message: OK @@ -229,54 +202,47 @@ 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 --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060047f4-0000-3300-0000-5eddaa580000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '880' + - '311' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:02:50 GMT - etag: - - '"060047f4-0000-3300-0000-5eddaa580000"' + - Tue, 15 Jun 2021 01:51:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '5' status: code: 200 message: OK @@ -284,54 +250,49 @@ 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 --encryption --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060047f4-0000-3300-0000-5eddaa580000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '880' + - '1699' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:03:06 GMT + - Tue, 15 Jun 2021 01:51:51 GMT etag: - - '"060047f4-0000-3300-0000-5eddaa580000"' + - '"00006d78-0000-3300-0000-60c8079d0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '9' status: code: 200 message: OK @@ -349,44 +310,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"060058f4-0000-3300-0000-5eddaa760000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"4f1777fffa88462baa285bcbac7e406e","dateCreated":"2020-06-08T03:01:45.9136674Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"9c60b5e4-dc2d-4aae-b085-a17f16e3ac6f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '881' + - '1699' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:03:21 GMT + - Tue, 15 Jun 2021 01:51:53 GMT etag: - - '"060058f4-0000-3300-0000-5eddaa760000"' + - '"00006d78-0000-3300-0000-60c8079d0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '11' status: code: 200 message: OK @@ -406,48 +362,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a4b17a32-d90b-4b0e-ab5b-818d7e21ea9a?api-version=2016-02-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 08 Jun 2020 03:03:23 GMT + - Tue, 15 Jun 2021 01:52:00 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/a4b17a32-d90b-4b0e-ab5b-818d7e21ea9a?api-version=2016-02-01-preview&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '90' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + - '14998' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: '{"kind": "Face", "location": "centraluseuap", "properties": {}, "sku": - {"name": "E0"}, "identity": {"type": "SystemAssigned"}}' + body: '{"kind": "Face", "sku": {"name": "E0"}, "identity": {"type": "SystemAssigned"}, + "location": "centraluseuap", "properties": {}}' headers: Accept: - application/json @@ -460,48 +407,43 @@ interactions: Content-Length: - '126' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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":"\"06005cf4-0000-3300-0000-5eddaa7f0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/e5f4b30d-2f92-4012-930a-a19e3d1cc1bf?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '823' + - '1641' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:03:27 GMT + - Tue, 15 Jun 2021 01:52:11 GMT etag: - - '"06005cf4-0000-3300-0000-5eddaa7f0000"' + - '"00007878-0000-3300-0000-60c807c90000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '419' x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET + - '1195' status: code: 201 message: Created @@ -509,54 +451,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"06005df4-0000-3300-0000-5eddaa800000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '823' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:03:43 GMT - etag: - - '"06005df4-0000-3300-0000-5eddaa800000"' + - Tue, 15 Jun 2021 01:52:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK @@ -564,54 +499,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"060068f4-0000-3300-0000-5eddaa9e0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '823' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:03:58 GMT - etag: - - '"060068f4-0000-3300-0000-5eddaa9e0000"' + - Tue, 15 Jun 2021 01:53:11 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK @@ -619,54 +547,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"060068f4-0000-3300-0000-5eddaa9e0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '823' + - '311' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:04:15 GMT - etag: - - '"060068f4-0000-3300-0000-5eddaa9e0000"' + - Tue, 15 Jun 2021 01:53:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '5' status: code: 200 message: OK @@ -674,54 +595,49 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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":"\"060078f4-0000-3300-0000-5eddaabc0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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":{}}}' headers: cache-control: - no-cache content-length: - - '823' + - '1642' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:04:31 GMT + - Tue, 15 Jun 2021 01:53:42 GMT etag: - - '"060078f4-0000-3300-0000-5eddaabc0000"' + - '"00009478-0000-3300-0000-60c808080000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '10' status: code: 200 message: OK @@ -733,113 +649,109 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account update Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --encryption User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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":"\"060078f4-0000-3300-0000-5eddaabc0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Creating"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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":{}}}' headers: cache-control: - no-cache content-length: - - '823' + - '1642' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:04:47 GMT + - Tue, 15 Jun 2021 01:53:44 GMT etag: - - '"060078f4-0000-3300-0000-5eddaabc0000"' + - '"00009478-0000-3300-0000-60c808080000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '12' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "E0"}, "properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account show + - cognitiveservices account update Connection: - keep-alive + Content-Length: + - '99' + Content-Type: + - application/json ParameterSetName: - - -n -g + - -n -g --encryption User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US - 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=2017-04-18 + - 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_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":"\"060089f4-0000-3300-0000-5eddaadb0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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":{}}}' 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 cache-control: - no-cache content-length: - - '824' + - '1697' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:05:02 GMT + - Tue, 15 Jun 2021 01:53:46 GMT etag: - - '"060089f4-0000-3300-0000-5eddaadb0000"' + - '"00009a78-0000-3300-0000-60c8082a0000"' 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 pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '455' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -849,109 +761,90 @@ interactions: ParameterSetName: - -n -g --encryption User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"060089f4-0000-3300-0000-5eddaadb0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[],"provisioningState":"Succeeded"},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '824' + - '311' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:05:03 GMT - etag: - - '"060089f4-0000-3300-0000-5eddaadb0000"' + - Tue, 15 Jun 2021 01:54:16 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK - request: - body: '{"properties": {"encryption": {"keySource": "Microsoft.CognitiveServices"}}, - "sku": {"name": "E0"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - cognitiveservices account update Connection: - keep-alive - Content-Length: - - '99' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --encryption User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"06008cf4-0000-3300-0000-5eddaae10000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[]},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c7bc6254-a6a9-422a-ba64-08b8abad4c70?api-version=2017-04-18 cache-control: - no-cache content-length: - - '880' + - '1698' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:05:06 GMT + - Tue, 15 Jun 2021 01:54:17 GMT etag: - - '"06008cf4-0000-3300-0000-5eddaae10000"' + - '"00009d78-0000-3300-0000-60c808310000"' expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/c7bc6254-a6a9-422a-ba64-08b8abad4c70?api-version=2017-04-18&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '10' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -966,44 +859,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - 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=2017-04-18 + 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":"\"06008df4-0000-3300-0000-5eddaae20000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"7a2db9243cee48039a2db3f404b1b299","dateCreated":"2020-06-08T03:03:27.1159057Z","encryption":{"keySource":"Microsoft.CognitiveServices"},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[]},"identity":{"principalId":"9850c66e-f4d6-4c3f-a283-6395989a47c9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '881' + - '1698' content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jun 2020 03:05:06 GMT + - Tue, 15 Jun 2021 01:54:18 GMT etag: - - '"06008df4-0000-3300-0000-5eddaae20000"' + - '"00009d78-0000-3300-0000-60c808310000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '14' status: code: 200 message: OK @@ -1023,43 +911,34 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.7.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ee7e5d40-ee52-4c01-89e7-7224d12cc484?api-version=2016-02-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 08 Jun 2020 03:05:07 GMT + - Tue, 15 Jun 2021 01:54:25 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ee7e5d40-ee52-4c01-89e7-7224d12cc484?api-version=2016-02-01-preview&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '78' x-ms-ratelimit-remaining-subscription-deletes: - '14999' - x-powered-by: - - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 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 0f1b6ff71a6..d1fb49cd8ec 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "location": "centraluseuap", "properties": {}, "sku": - {"name": "E0"}}' + body: '{"kind": "Face", "sku": {"name": "E0"}, "location": "centraluseuap", "properties": + {}}' headers: Accept: - application/json @@ -14,48 +14,43 @@ interactions: Content-Length: - '86' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --yes User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/12f8d587-7dd8-4959-b814-73e9a194b2e0?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '665' + - '1473' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:19:06 GMT + - Tue, 15 Jun 2021 01:54:40 GMT etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - '"0000ad78-0000-3300-0000-60c8085f0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '281' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1197' status: code: 201 message: Created @@ -63,54 +58,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + 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: - - '665' + - '277' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:19:21 GMT - etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - Tue, 15 Jun 2021 01:55:10 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '12' status: code: 200 message: OK @@ -118,54 +106,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + 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: - - '665' + - '277' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:19:37 GMT - etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - Tue, 15 Jun 2021 01:55:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '10' status: code: 200 message: OK @@ -173,54 +154,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + 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: - - '665' + - '277' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:19:55 GMT - etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - Tue, 15 Jun 2021 01:56:11 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK @@ -228,54 +202,47 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"}}' + 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"}' headers: cache-control: - no-cache content-length: - - '665' + - '311' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:12 GMT - etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - Tue, 15 Jun 2021 01:56:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK @@ -283,54 +250,49 @@ 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: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0000ed18-0000-3300-0000-5ed6c2490000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '665' + - '1474' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:28 GMT + - Tue, 15 Jun 2021 01:56:41 GMT etag: - - '"0000ed18-0000-3300-0000-5ed6c2490000"' + - '"0000ba78-0000-3300-0000-60c808bc0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '9' status: code: 200 message: OK @@ -348,44 +310,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00002d19-0000-3300-0000-5ed6c2a60000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '666' + - '1474' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:45 GMT + - Tue, 15 Jun 2021 01:56:43 GMT etag: - - '"00002d19-0000-3300-0000-5ed6c2a60000"' + - '"0000ba78-0000-3300-0000-60c808bc0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '13' status: code: 200 message: OK @@ -403,44 +360,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00002d19-0000-3300-0000-5ed6c2a60000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '666' + - '1474' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:45 GMT + - Tue, 15 Jun 2021 01:56:45 GMT etag: - - '"00002d19-0000-3300-0000-5ed6c2a60000"' + - '"0000ba78-0000-3300-0000-60c808bc0000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '10' status: code: 200 message: OK @@ -458,53 +410,146 @@ interactions: Content-Length: - '40' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00002f19-0000-3300-0000-5ed6c2b00000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"},"identity":{"principalId":"197a9dc2-e20d-4385-bcb3-df4e4bcd7561","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/fd54a0ff-4443-4000-8dba-aa0a3c5ea869?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '805' + - '1641' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:48 GMT + - Tue, 15 Jun 2021 01:56:50 GMT etag: - - '"00002f19-0000-3300-0000-5ed6c2b00000"' + - '"0000c378-0000-3300-0000-60c808e20000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/fd54a0ff-4443-4000-8dba-aa0a3c5ea869?api-version=2017-04-18&operationResultResponseType=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 pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '180' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '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.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: @@ -519,44 +564,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00003119-0000-3300-0000-5ed6c2b20000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"},"identity":{"principalId":"197a9dc2-e20d-4385-bcb3-df4e4bcd7561","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '806' + - '1642' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:49 GMT + - Tue, 15 Jun 2021 01:57:22 GMT etag: - - '"00003119-0000-3300-0000-5ed6c2b20000"' + - '"0000c478-0000-3300-0000-60c808e30000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '9' status: code: 200 message: OK @@ -574,50 +614,45 @@ interactions: Content-Length: - '30' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00003319-0000-3300-0000-5ed6c2b30000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-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: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/4d69d8ca-77a4-4916-a3e5-1f3c9c0f83cb?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '692' + - '1528' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:51 GMT + - Tue, 15 Jun 2021 02:00:26 GMT etag: - - '"00003319-0000-3300-0000-5ed6c2b30000"' + - '"0000ef78-0000-3300-0000-60c809bb0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/4d69d8ca-77a4-4916-a3e5-1f3c9c0f83cb?api-version=2017-04-18&operationResultResponseType=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 pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '255' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1198' status: code: 202 message: Accepted @@ -635,44 +670,137 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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) 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"00003419-0000-3300-0000-5ed6c2b40000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"dca501110b0544cca826d9b3109eb8a3","dateCreated":"2020-06-02T21:19:05.3829017Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled"},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: cache-control: - no-cache content-length: - - '693' + - '1529' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 21:20:52 GMT + - Tue, 15 Jun 2021 02:00:57 GMT etag: - - '"00003419-0000-3300-0000-5ed6c2b40000"' + - '"0000f078-0000-3300-0000-60c809c10000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '10' status: code: 200 message: OK @@ -692,43 +820,34 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.5.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ea4275ef-9638-4ac0-87c2-9d840ab6d6fc?api-version=2016-02-01-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jun 2020 21:20:53 GMT + - Tue, 15 Jun 2021 02:02:36 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/ea4275ef-9638-4ac0-87c2-9d840ab6d6fc?api-version=2016-02-01-preview&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '84' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + - '14997' status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 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 50f70049801..ba71acb64d3 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"kind": "Face", "location": "centraluseuap", "properties": {}, "sku": - {"name": "E0"}, "identity": {"type": "SystemAssigned"}}' + body: '{"kind": "Face", "sku": {"name": "E0"}, "identity": {"type": "SystemAssigned"}, + "location": "centraluseuap", "properties": {}}' headers: Accept: - application/json @@ -14,48 +14,43 @@ interactions: Content-Length: - '126' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/93f91cab-1648-4543-b2ea-f76b9b72f501?api-version=2017-04-18 + - 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 cache-control: - no-cache content-length: - - '805' + - '1641' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:36:00 GMT + - Tue, 15 Jun 2021 01:50:34 GMT etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - '"00005a78-0000-3300-0000-60c807680000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '256' x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET + - '1197' status: code: 201 message: Created @@ -63,164 +58,47 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - cognitiveservices account show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - 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=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":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' - headers: - cache-control: - - no-cache - content-length: - - '805' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 May 2020 02:36:16 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - 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=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":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' - headers: - cache-control: - - no-cache - content-length: - - '805' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 May 2020 02:36:32 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '805' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:36:49 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - Tue, 15 Jun 2021 01:51:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '5' status: code: 200 message: OK @@ -228,54 +106,47 @@ 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '805' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:37:05 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - Tue, 15 Jun 2021 01:51:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '6' status: code: 200 message: OK @@ -283,54 +154,47 @@ 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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: - - '805' + - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:37:21 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - Tue, 15 Jun 2021 01:52:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '5' status: code: 200 message: OK @@ -338,54 +202,47 @@ 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=2017-04-18 + 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + 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"}' headers: cache-control: - no-cache content-length: - - '805' + - '311' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:37:38 GMT - etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - Tue, 15 Jun 2021 01:52:35 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '7' status: code: 200 message: OK @@ -393,54 +250,49 @@ 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: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"04009dec-0000-3300-0000-5ec1f4910000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Creating"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: cache-control: - no-cache content-length: - - '805' + - '1642' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:37:54 GMT + - Tue, 15 Jun 2021 01:52:36 GMT etag: - - '"04009dec-0000-3300-0000-5ec1f4910000"' + - '"00007578-0000-3300-0000-60c807c60000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '9' status: code: 200 message: OK @@ -458,44 +310,39 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0400f0ec-0000-3300-0000-5ec1f50d0000\"","location":"centraluseuap","sku":{"name":"E0"},"kind":"Face","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/","internalId":"881fa8f9ab0743d19e2bbecb8fe650c2","dateCreated":"2020-05-18T02:36:00.8280606Z","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","provisioningState":"Succeeded"},"identity":{"principalId":"5308bc40-a361-4f77-ae59-a7c49e593aab","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"}}' + string: '{"id":"/subscriptions/00000000-0000-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":{}}}' headers: cache-control: - no-cache content-length: - - '806' + - '1642' content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 02:38:10 GMT + - Tue, 15 Jun 2021 01:52:37 GMT etag: - - '"0400f0ec-0000-3300-0000-5ec1f50d0000"' + - '"00007578-0000-3300-0000-60c807c60000"' expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-envoy-upstream-service-time: + - '15' status: code: 200 message: OK @@ -515,43 +362,34 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Darwin-19.4.0-x86_64-i386-64bit) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/2.0.0 Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0fe72fc1-80f5-49c7-817e-8705124909c0?api-version=2016-02-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 18 May 2020 02:38:11 GMT + - Tue, 15 Jun 2021 01:52:44 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/operationResults/0fe72fc1-80f5-49c7-817e-8705124909c0?api-version=2016-02-01-preview&operationResultResponseType=Location pragma: - no-cache server: - - Microsoft-IIS/10.0 + - istio-envoy strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff + x-envoy-upstream-service-time: + - '81' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + - '14998' status: - code: 202 - message: Accepted + code: 200 + message: OK version: 1 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 64fd87eab87..3fb99553654 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.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-resource/18.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?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-02-09T05:33:29Z"},"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-15T01:49:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:32 GMT + - Tue, 15 Jun 2021 01:49:44 GMT expires: - '-1' pragma: @@ -63,33 +60,33 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"42c8ce05-c6a5-4865-b018-b72d15b4bd2b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a10ee76a-91a7-466d-a565-4bb889a68bf7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\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/286d4729-45e3-4a4e-8672-534fe505cdaa?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - - '788' + - '754' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:37 GMT + - Tue, 15 Jun 2021 01:49:52 GMT expires: - '-1' pragma: @@ -102,9 +99,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2ab3759-50dd-490c-999c-f6e6d0606804 + - 19eba2d9-ac12-4e09-91a3-4a5ac26bd9bc x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -122,9 +119,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/286d4729-45e3-4a4e-8672-534fe505cdaa?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:41 GMT + - Tue, 15 Jun 2021 01:49:55 GMT expires: - '-1' pragma: @@ -153,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a0a84441-37bf-409d-8b6b-9e1d5414ebbf + - fb78cc5e-4f9a-460b-a6ec-b4f904788250 status: code: 200 message: OK @@ -171,31 +168,31 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"6658cbe3-c616-4fc0-9925-6a1ef57fed01\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4b248c-337e-441b-8350-d13d456350e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '789' + - '755' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:41 GMT + - Tue, 15 Jun 2021 01:49:56 GMT etag: - - W/"6658cbe3-c616-4fc0-9925-6a1ef57fed01" + - W/"5b4b248c-337e-441b-8350-d13d456350e2" expires: - '-1' pragma: @@ -212,7 +209,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 180516e3-f8e4-47bb-9bd2-0b58705557f6 + - ed987bef-f3d9-44e8-a003-dd1e681f03b2 status: code: 200 message: OK @@ -230,31 +227,31 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"6658cbe3-c616-4fc0-9925-6a1ef57fed01\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b4b248c-337e-441b-8350-d13d456350e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '789' + - '755' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:42 GMT + - Tue, 15 Jun 2021 01:49:56 GMT etag: - - W/"6658cbe3-c616-4fc0-9925-6a1ef57fed01" + - W/"5b4b248c-337e-441b-8350-d13d456350e2" expires: - '-1' pragma: @@ -271,7 +268,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 911ebde4-e67a-4a1f-8039-e98aba1d367c + - e81cfabb-4add-44d9-9446-8c1d10dcd1f2 status: code: 200 message: OK @@ -279,8 +276,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": [{"name": "default", - "properties": {"addressPrefix": "10.0.0.0/24"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false, "enableVmProtection": false}}' + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -291,44 +289,44 @@ interactions: Connection: - keep-alive Content-Length: - - '524' + - '588' Content-Type: - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"ed453b6f-4a5a-4df8-a341-73713772a9e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c315c16b-da53-4adb-90f9-56574ba7cd52\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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/\\\"ed453b6f-4a5a-4df8-a341-73713772a9e5\\\"\",\r\n + \ \"etag\": \"W/\\\"c315c16b-da53-4adb-90f9-56574ba7cd52\\\"\",\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 \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/251bff10-28fd-40dd-ac36-3c2f03f68774?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - - '1470' + - '1436' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:42 GMT + - Tue, 15 Jun 2021 01:49:57 GMT expires: - '-1' pragma: @@ -345,9 +343,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ae30f16-6507-4c0d-9254-9a89cde1cd56 + - 714255c4-8b04-4945-b213-180cc951404d x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -365,9 +363,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/251bff10-28fd-40dd-ac36-3c2f03f68774?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -379,7 +377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:46 GMT + - Tue, 15 Jun 2021 01:50:01 GMT expires: - '-1' pragma: @@ -396,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08c17023-6d7f-4482-87bf-9a596d4a52d1 + - 367036dc-0349-4c65-8bd6-e51ebbb909fe status: code: 200 message: OK @@ -414,38 +412,38 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"53137aa6-9643-4f44-b7c9-a35b8531dcfe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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/\\\"53137aa6-9643-4f44-b7c9-a35b8531dcfe\\\"\",\r\n + \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\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 \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1472' + - '1438' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:46 GMT + - Tue, 15 Jun 2021 01:50:01 GMT etag: - - W/"53137aa6-9643-4f44-b7c9-a35b8531dcfe" + - W/"5961460a-d592-447f-935a-cc01d4887ec5" expires: - '-1' pragma: @@ -462,7 +460,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bca0aea8-3eba-48a5-a892-d384380b7dbb + - e982bc91-53bd-49ff-b914-e89f41732b86 status: code: 200 message: OK @@ -480,38 +478,38 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"53137aa6-9643-4f44-b7c9-a35b8531dcfe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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/\\\"53137aa6-9643-4f44-b7c9-a35b8531dcfe\\\"\",\r\n + \ \"etag\": \"W/\\\"5961460a-d592-447f-935a-cc01d4887ec5\\\"\",\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 \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1472' + - '1438' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:48 GMT + - Tue, 15 Jun 2021 01:50:02 GMT etag: - - W/"53137aa6-9643-4f44-b7c9-a35b8531dcfe" + - W/"5961460a-d592-447f-935a-cc01d4887ec5" expires: - '-1' pragma: @@ -528,7 +526,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a51af60-dd05-4880-b99b-5c0dd6097556 + - 240776a7-d145-427c-bf90-3be747b69d00 status: code: 200 message: OK @@ -536,11 +534,12 @@ 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", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [], "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": - "Enabled"}}, {"name": "subnet", "properties": {"addressPrefix": "10.0.1.0/24"}}], - "virtualNetworkPeerings": [], "enableDdosProtection": false, "enableVmProtection": - false}}' + "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: - application/json @@ -551,50 +550,50 @@ interactions: Connection: - keep-alive Content-Length: - - '933' + - '1050' Content-Type: - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"8f1fbe61-d35d-4a47-9daa-506ab533166a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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/\\\"8f1fbe61-d35d-4a47-9daa-506ab533166a\\\"\",\r\n + \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\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/\\\"8f1fbe61-d35d-4a47-9daa-506ab533166a\\\"\",\r\n + \ \"etag\": \"W/\\\"34c1e3ac-7be9-4e10-a78e-79b24c880e6d\\\"\",\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\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1403dacf-7ccc-4a63-abc5-31dec492338f?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - - '2145' + - '2111' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:48 GMT + - Tue, 15 Jun 2021 01:50:03 GMT expires: - '-1' pragma: @@ -611,9 +610,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37cce38b-5184-404f-9a00-234734b049f5 + - 1cc032bf-69a7-409e-91d6-e6c53d16e498 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -631,9 +630,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/1403dacf-7ccc-4a63-abc5-31dec492338f?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -645,7 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:52 GMT + - Tue, 15 Jun 2021 01:50:06 GMT expires: - '-1' pragma: @@ -662,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2e966695-21f4-47be-8832-e2cbffbdb108 + - dd02dbf4-de15-4254-ab8d-fa70b3e6e7b7 status: code: 200 message: OK @@ -680,44 +679,44 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"d535766f-0d30-423b-a7a2-30c182abcef6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81d81147-5bc0-4511-a454-bd580993e810\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"09477cef-ee6b-48ac-9b99-7554c107546b\",\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/\\\"d535766f-0d30-423b-a7a2-30c182abcef6\\\"\",\r\n + \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\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/\\\"d535766f-0d30-423b-a7a2-30c182abcef6\\\"\",\r\n + \ \"etag\": \"W/\\\"e6573df9-78b1-40ce-8d58-b7ed031b5281\\\"\",\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\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2148' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:52 GMT + - Tue, 15 Jun 2021 01:50:07 GMT etag: - - W/"d535766f-0d30-423b-a7a2-30c182abcef6" + - W/"e6573df9-78b1-40ce-8d58-b7ed031b5281" expires: - '-1' pragma: @@ -734,13 +733,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6321eab8-0034-4099-b837-22278d7c9608 + - 69784105-b564-44fa-a72b-cd8d6d9ae342 status: code: 200 message: OK - request: - body: '{"kind": "Face", "location": "westus", "properties": {"customSubDomainName": - "csclitest000003"}, "sku": {"name": "S0"}}' + body: '{"kind": "Face", "sku": {"name": "S0"}, "location": "westus", "properties": + {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -753,30 +752,29 @@ interactions: Content-Length: - '120' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f025ddf-0000-0700-0000-60221ec80000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '795' + - '1483' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:00 GMT + - Tue, 15 Jun 2021 01:50:14 GMT etag: - - '"7f025ddf-0000-0700-0000-60221ec80000"' + - '"5800e2fc-0000-0700-0000-60c807540000"' expires: - '-1' pragma: @@ -788,9 +786,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '2747' + - '1602' x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1198' status: code: 201 message: Created @@ -798,36 +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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=2017-04-18 + 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 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f025ddf-0000-0700-0000-60221ec80000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"provisioningState":"Succeeded"}}' + 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"}' headers: cache-control: - no-cache content-length: - - '795' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:02 GMT - etag: - - '"7f025ddf-0000-0700-0000-60221ec80000"' + - Tue, 15 Jun 2021 01:50:45 GMT expires: - '-1' pragma: @@ -843,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '103' status: code: 200 message: OK @@ -851,36 +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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f025ddf-0000-0700-0000-60221ec80000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}],"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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '795' + - '1484' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:03 GMT + - Tue, 15 Jun 2021 01:50:49 GMT etag: - - '"7f025ddf-0000-0700-0000-60221ec80000"' + - '"580013fd-0000-0700-0000-60c8075b0000"' expires: - '-1' pragma: @@ -901,44 +891,36 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}], "virtualNetworkRules": []}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule add + - cognitiveservices account network-rule list Connection: - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --ip-address + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0295df-0000-0700-0000-60221ecc0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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"}}' headers: cache-control: - no-cache content-length: - - '893' + - '1484' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:05 GMT + - Tue, 15 Jun 2021 01:50:50 GMT etag: - - '"7f0295df-0000-0700-0000-60221ecc0000"' + - '"580013fd-0000-0700-0000-60c8075b0000"' expires: - '-1' pragma: @@ -954,9 +936,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '205' - x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '9' status: code: 200 message: OK @@ -968,32 +948,29 @@ interactions: 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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0295df-0000-0700-0000-60221ecc0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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"}}' headers: cache-control: - no-cache content-length: - - '893' + - '1484' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:06 GMT + - Tue, 15 Jun 2021 01:50:51 GMT etag: - - '"7f0295df-0000-0700-0000-60221ecc0000"' + - '"580013fd-0000-0700-0000-60c8075b0000"' expires: - '-1' pragma: @@ -1009,12 +986,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '9' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}], "virtualNetworkRules": []}}}' headers: Accept: - application/json @@ -1024,87 +1002,80 @@ interactions: - cognitiveservices account network-rule add Connection: - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json ParameterSetName: - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0295df-0000-0700-0000-60221ecc0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' 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 cache-control: - no-cache content-length: - - '893' + - '1581' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:06 GMT + - Tue, 15 Jun 2021 01:50:54 GMT etag: - - '"7f0295df-0000-0700-0000-60221ecc0000"' + - '"5800edfd-0000-0700-0000-60c8077e0000"' 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 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' + - '455' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": - "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - cognitiveservices account network-rule add Connection: - keep-alive - Content-Length: - - '149' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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/c95e3854-5303-4315-8ff6-b6903552141a?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":"\"7f02b5df-0000-0700-0000-60221ecf0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + 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"}' headers: cache-control: - no-cache content-length: - - '918' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:06 GMT - etag: - - '"7f02b5df-0000-0700-0000-60221ecf0000"' + - Tue, 15 Jun 2021 01:51:25 GMT expires: - '-1' pragma: @@ -1120,9 +1091,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '218' - x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '175' status: code: 200 message: OK @@ -1130,36 +1099,33 @@ 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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02b5df-0000-0700-0000-60221ecf0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '918' + - '1582' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:08 GMT + - Tue, 15 Jun 2021 01:51:25 GMT etag: - - '"7f02b5df-0000-0700-0000-60221ecf0000"' + - '"5800f6fd-0000-0700-0000-60c8077f0000"' expires: - '-1' pragma: @@ -1175,7 +1141,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '10' status: code: 200 message: OK @@ -1187,32 +1153,29 @@ interactions: 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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02b5df-0000-0700-0000-60221ecf0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '918' + - '1582' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:08 GMT + - Tue, 15 Jun 2021 01:51:27 GMT etag: - - '"7f02b5df-0000-0700-0000-60221ecf0000"' + - '"5800f6fd-0000-0700-0000-60c8077f0000"' expires: - '-1' pragma: @@ -1228,14 +1191,12 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '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}]}}}' + body: null headers: Accept: - application/json @@ -1245,33 +1206,26 @@ interactions: - cognitiveservices account network-rule add Connection: - keep-alive - Content-Length: - - '420' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --subnet + - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0225e0-0000-0700-0000-60221edd0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '1186' + - '1582' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:21 GMT + - Tue, 15 Jun 2021 01:51:27 GMT etag: - - '"7f0225e0-0000-0700-0000-60221edd0000"' + - '"5800f6fd-0000-0700-0000-60c8077f0000"' expires: - '-1' pragma: @@ -1287,70 +1241,72 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '12293' - x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '8' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [{"value": + "200.0.0.1"}, {"value": "100.0.0.0/24"}], "virtualNetworkRules": []}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account network-rule add Connection: - keep-alive + Content-Length: + - '149' + Content-Type: + - application/json ParameterSetName: - - -n -g + - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0225e0-0000-0700-0000-60221edd0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' 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 cache-control: - no-cache content-length: - - '1186' + - '1606' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:21 GMT + - Tue, 15 Jun 2021 01:51:28 GMT etag: - - '"7f0225e0-0000-0700-0000-60221edd0000"' + - '"5800befe-0000-0700-0000-60c807a00000"' 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 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' + - '95' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1358,28 +1314,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --subnet --vnet-name + - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=2017-04-18 + 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 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0225e0-0000-0700-0000-60221edd0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + 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"}' headers: cache-control: - no-cache content-length: - - '1186' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:23 GMT - etag: - - '"7f0225e0-0000-0700-0000-60221edd0000"' + - Tue, 15 Jun 2021 01:51:58 GMT expires: - '-1' pragma: @@ -1395,51 +1346,41 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '105' 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}]}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - cognitiveservices account network-rule add Connection: - keep-alive - Content-Length: - - '692' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --subnet --vnet-name + - -n -g --ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f02bbe0-0000-0700-0000-60221eeb0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '1454' + - '1607' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:35 GMT + - Tue, 15 Jun 2021 01:51:58 GMT etag: - - '"7f02bbe0-0000-0700-0000-60221eeb0000"' + - '"5800cefe-0000-0700-0000-60c807a30000"' expires: - '-1' pragma: @@ -1455,9 +1396,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11391' - x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '8' status: code: 200 message: OK @@ -1475,26 +1414,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02bbe0-0000-0700-0000-60221eeb0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '1454' + - '1607' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:36 GMT + - Tue, 15 Jun 2021 01:51:59 GMT etag: - - '"7f02bbe0-0000-0700-0000-60221eeb0000"' + - '"5800cefe-0000-0700-0000-60c807a30000"' expires: - '-1' pragma: @@ -1510,7 +1446,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '7' status: code: 200 message: OK @@ -1522,32 +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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02bbe0-0000-0700-0000-60221eeb0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' headers: cache-control: - no-cache content-length: - - '1454' + - '1607' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:36 GMT + - Tue, 15 Jun 2021 01:52:00 GMT etag: - - '"7f02bbe0-0000-0700-0000-60221eeb0000"' + - '"5800cefe-0000-0700-0000-60c807a30000"' expires: - '-1' pragma: @@ -1563,14 +1496,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '12' 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", + "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: @@ -1578,91 +1510,83 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive Content-Length: - - '668' + - '420' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -n -g --ip-address + - -n -g --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02e7e0-0000-0700-0000-60221eee0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' 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 cache-control: - no-cache content-length: - - '1432' + - '1874' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:38 GMT + - Tue, 15 Jun 2021 01:52:13 GMT etag: - - '"7f02e7e0-0000-0700-0000-60221eee0000"' + - '"58008bff-0000-0700-0000-60c807c10000"' 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 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: - - '1439' + - '12052' x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: 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: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=2017-04-18 + 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 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02e7e0-0000-0700-0000-60221eee0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + 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"}' headers: cache-control: - no-cache content-length: - - '1432' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:40 GMT - etag: - - '"7f02e7e0-0000-0700-0000-60221eee0000"' + - Tue, 15 Jun 2021 01:52:43 GMT expires: - '-1' pragma: @@ -1678,7 +1602,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '5' status: code: 200 message: OK @@ -1686,36 +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 --ip-address + - -n -g --subnet User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02e7e0-0000-0700-0000-60221eee0000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1432' + - '1875' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:40 GMT + - Tue, 15 Jun 2021 01:52:44 GMT etag: - - '"7f02e7e0-0000-0700-0000-60221eee0000"' + - '"5800ddff-0000-0700-0000-60c807ce0000"' expires: - '-1' pragma: @@ -1731,51 +1652,41 @@ 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": [], - "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}]}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule list Connection: - keep-alive - Content-Length: - - '643' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --ip-address + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0204e1-0000-0700-0000-60221ef10000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1408' + - '1875' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:41 GMT + - Tue, 15 Jun 2021 01:52:45 GMT etag: - - '"7f0204e1-0000-0700-0000-60221ef10000"' + - '"5800ddff-0000-0700-0000-60c807ce0000"' expires: - '-1' pragma: @@ -1791,9 +1702,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '723' - x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '9' status: code: 200 message: OK @@ -1805,32 +1714,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule list + - cognitiveservices account network-rule add Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0204e1-0000-0700-0000-60221ef10000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1408' + - '1875' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:42 GMT + - Tue, 15 Jun 2021 01:52:46 GMT etag: - - '"7f0204e1-0000-0700-0000-60221ef10000"' + - '"5800ddff-0000-0700-0000-60c807ce0000"' expires: - '-1' pragma: @@ -1851,98 +1757,93 @@ interactions: code: 200 message: OK - request: - body: null + 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 remove + - cognitiveservices account network-rule add Connection: - keep-alive + Content-Length: + - '692' + Content-Type: + - application/json ParameterSetName: - - -n -g --subnet + - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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":"\"7f0204e1-0000-0700-0000-60221ef10000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1408' + - '2142' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:42 GMT + - Tue, 15 Jun 2021 01:53:00 GMT etag: - - '"7f0204e1-0000-0700-0000-60221ef10000"' + - '"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 - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '11466' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - 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}]}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule add Connection: - keep-alive - Content-Length: - - '370' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --subnet + - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US - 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=2017-04-18 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f020fe1-0000-0700-0000-60221ef30000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + 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: - - '1139' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:44 GMT - etag: - - '"7f020fe1-0000-0700-0000-60221ef30000"' + - Tue, 15 Jun 2021 01:53:30 GMT expires: - '-1' pragma: @@ -1958,9 +1859,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '651' - x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '6' status: code: 200 message: OK @@ -1968,36 +1867,33 @@ 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 --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f020fe1-0000-0700-0000-60221ef30000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1139' + - '2143' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:44 GMT + - Tue, 15 Jun 2021 01:53:31 GMT etag: - - '"7f020fe1-0000-0700-0000-60221ef30000"' + - '"5900f700-0000-0700-0000-60c807fc0000"' expires: - '-1' pragma: @@ -2025,32 +1921,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cognitiveservices account network-rule remove + - cognitiveservices account network-rule list Connection: - keep-alive ParameterSetName: - - -n -g --subnet --vnet-name + - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f020fe1-0000-0700-0000-60221ef30000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '1139' + - '2143' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:44 GMT + - Tue, 15 Jun 2021 01:53:32 GMT etag: - - '"7f020fe1-0000-0700-0000-60221ef30000"' + - '"5900f700-0000-0700-0000-60c807fc0000"' expires: - '-1' pragma: @@ -2071,7 +1964,827 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], + 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 + 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/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/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1828' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Jun 2021 01:55:16 GMT + etag: + - '"59004b03-0000-0700-0000-60c808660000"' + 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":"\"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/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1828' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Jun 2021 01:55:17 GMT + etag: + - '"59004b03-0000-0700-0000-60c808660000"' + 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 --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":"\"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/"}}}' + headers: + cache-control: + - no-cache + content-length: + - '1828' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Jun 2021 01:55:18 GMT + etag: + - '"59004b03-0000-0700-0000-60c808660000"' + 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: '{"properties": {"networkAcls": {"defaultAction": "Deny", "ipRules": [], "virtualNetworkRules": []}}}' headers: Accept: @@ -2085,30 +2798,77 @@ interactions: Content-Length: - '100' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0298e1-0000-0700-0000-60221f000000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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/"}}}' 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 cache-control: - no-cache content-length: - - '872' + - '1560' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:56 GMT + - Tue, 15 Jun 2021 01:55:30 GMT etag: - - '"7f0298e1-0000-0700-0000-60221f000000"' + - '"59001204-0000-0700-0000-60c808870000"' + 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 + pragma: + - no-cache + server: + - istio-envoy + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-envoy-upstream-service-time: + - '11629' + 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 --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: @@ -2124,9 +2884,57 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11181' - x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '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 @@ -2144,26 +2952,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0298e1-0000-0700-0000-60221f000000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '872' + - '1561' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:57 GMT + - Tue, 15 Jun 2021 01:56:03 GMT etag: - - '"7f0298e1-0000-0700-0000-60221f000000"' + - '"59005704-0000-0700-0000-60c808950000"' expires: - '-1' pragma: @@ -2179,7 +2984,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '9' status: code: 200 message: OK @@ -2197,26 +3002,23 @@ interactions: ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0298e1-0000-0700-0000-60221f000000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '872' + - '1561' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:59 GMT + - Tue, 15 Jun 2021 01:56:04 GMT etag: - - '"7f0298e1-0000-0700-0000-60221f000000"' + - '"59005704-0000-0700-0000-60c808950000"' expires: - '-1' pragma: @@ -2251,30 +3053,127 @@ interactions: Content-Length: - '100' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --subnet --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/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/"}}}' + 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 + cache-control: + - no-cache + content-length: + - '1560' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Jun 2021 01:56:06 GMT + etag: + - '"59000a05-0000-0700-0000-60c808b50000"' + 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 + 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: 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":"\"7f02c1e1-0000-0700-0000-60221f030000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '872' + - '1561' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:59 GMT + - Tue, 15 Jun 2021 01:56:36 GMT etag: - - '"7f02c1e1-0000-0700-0000-60221f030000"' + - '"59001205-0000-0700-0000-60c808b60000"' expires: - '-1' pragma: @@ -2290,9 +3189,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '179' - x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '10' status: code: 200 message: OK @@ -2310,26 +3207,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02c1e1-0000-0700-0000-60221f030000\"","location":"westus","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"4a6f7e00e85e4b7fa0ee399fb5f69795","dateCreated":"2021-02-09T05:33:58.7823883Z","customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"Face.*,Face.Face"}]}}' + string: '{"id":"/subscriptions/00000000-0000-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: - - '872' + - '1561' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:00 GMT + - Tue, 15 Jun 2021 01:56:37 GMT etag: - - '"7f02c1e1-0000-0700-0000-60221f030000"' + - '"59001205-0000-0700-0000-60c808b60000"' expires: - '-1' pragma: @@ -2345,7 +3239,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '10' status: code: 200 message: OK @@ -2365,12 +3259,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -2380,7 +3271,7 @@ interactions: content-length: - '0' date: - - Tue, 09 Feb 2021 05:35:08 GMT + - Tue, 15 Jun 2021 01:56:44 GMT expires: - '-1' pragma: @@ -2392,9 +3283,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1294' + - '67' x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '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 45ff35958b6..93493767a5b 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", "location": "westus", "properties": {"customSubDomainName": - "csclitest000003"}, "sku": {"name": "S0"}}' + body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "westus", "properties": + {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -12,32 +12,31 @@ interactions: Connection: - keep-alive Content-Length: - - '129' + - '128' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02e6df-0000-0700-0000-60221ed50000\"","location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"75984c15ad9d4e5495d37aae1ee4ca4e","dateCreated":"2021-02-09T05:34:12.5968545Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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 + Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '2206' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:15 GMT + - Tue, 15 Jun 2021 01:49:51 GMT etag: - - '"7f02e6df-0000-0700-0000-60221ed50000"' + - '"580062fc-0000-0700-0000-60c8073e0000"' expires: - '-1' pragma: @@ -49,9 +48,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '2425' + - '1483' x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1199' status: code: 201 message: Created @@ -69,7 +68,7 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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 response: @@ -83,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:15 GMT + - Tue, 15 Jun 2021 01:49:52 GMT expires: - '-1' pragma: @@ -99,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '16' + - '11' status: code: 200 message: OK @@ -122,33 +121,33 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"72282ba9-0b13-44bc-8cbc-5e4fe8946d5e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3414025e-5ed7-40c7-ac7a-ac2aef177c82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0da72888-16d2-4c9b-9de4-0d8f04e86fe9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\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/39e63fe2-2630-4901-ba24-2caa81fadb91?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - - '788' + - '754' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:20 GMT + - Tue, 15 Jun 2021 01:50:00 GMT expires: - '-1' pragma: @@ -161,9 +160,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8a9d0a2-b7ba-4ae6-b4da-729741497a4d + - 24ca0ff2-7ed6-4152-a3c7-ef3afe90ff0c x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -181,9 +180,9 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/39e63fe2-2630-4901-ba24-2caa81fadb91?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -195,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:23 GMT + - Tue, 15 Jun 2021 01:50:03 GMT expires: - '-1' pragma: @@ -212,7 +211,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b013b556-f9c1-4628-82c2-1c4f85785f78 + - 0ce40384-66d6-4a24-85a6-991f27b123c2 status: code: 200 message: OK @@ -230,31 +229,31 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"511d6637-cc83-4225-b472-439277c98ae1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"55d4f3d2-2b34-416d-9522-5aea54582105\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0da72888-16d2-4c9b-9de4-0d8f04e86fe9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '789' + - '755' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:23 GMT + - Tue, 15 Jun 2021 01:50:03 GMT etag: - - W/"511d6637-cc83-4225-b472-439277c98ae1" + - W/"55d4f3d2-2b34-416d-9522-5aea54582105" expires: - '-1' pragma: @@ -271,7 +270,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 39ad1e4d-3d75-4ceb-849f-2a0daebf6793 + - 6bd215b0-5569-4b66-ae17-077cf1e931cc status: code: 200 message: OK @@ -289,31 +288,31 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"511d6637-cc83-4225-b472-439277c98ae1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"55d4f3d2-2b34-416d-9522-5aea54582105\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0da72888-16d2-4c9b-9de4-0d8f04e86fe9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\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\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '789' + - '755' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:24 GMT + - Tue, 15 Jun 2021 01:50:05 GMT etag: - - W/"511d6637-cc83-4225-b472-439277c98ae1" + - W/"55d4f3d2-2b34-416d-9522-5aea54582105" expires: - '-1' pragma: @@ -330,7 +329,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b32fcd9d-07b5-4b57-8290-af288bfb1ec4 + - 389c2d4e-d5e3-4a14-93fa-b00220752b10 status: code: 200 message: OK @@ -338,8 +337,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": [{"name": "default", - "properties": {"addressPrefix": "10.0.0.0/24"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false, "enableVmProtection": false}}' + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -350,44 +350,44 @@ interactions: Connection: - keep-alive Content-Length: - - '524' + - '588' Content-Type: - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"928c0fc7-16b0-49c3-9bbc-ba5498123e9a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b35a3c70-20ac-45cf-8a29-bfcaea5d5a2d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0da72888-16d2-4c9b-9de4-0d8f04e86fe9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\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/\\\"928c0fc7-16b0-49c3-9bbc-ba5498123e9a\\\"\",\r\n + \ \"etag\": \"W/\\\"b35a3c70-20ac-45cf-8a29-bfcaea5d5a2d\\\"\",\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 \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8e427b9a-e328-43c5-86ec-de6341a7827a?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - - '1470' + - '1436' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:24 GMT + - Tue, 15 Jun 2021 01:50:07 GMT expires: - '-1' pragma: @@ -404,9 +404,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce3dac90-67da-4456-9b56-7cf7c8a60488 + - 11c48c71-1eaf-46be-aa12-b87c7dd8becf x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -424,9 +424,9 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/8e427b9a-e328-43c5-86ec-de6341a7827a?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -438,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:28 GMT + - Tue, 15 Jun 2021 01:50:10 GMT expires: - '-1' pragma: @@ -455,7 +455,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a651265c-4ee0-48ce-bccf-ec768e7d95d8 + - ce8de120-e724-4a0b-b72b-367ad8dd908a status: code: 200 message: OK @@ -473,38 +473,38 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"cb7e34c7-1971-455c-9a2a-7e874d78e9d2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0da72888-16d2-4c9b-9de4-0d8f04e86fe9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8596236-48bf-4bee-a966-8dce8164b320\",\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/\\\"cb7e34c7-1971-455c-9a2a-7e874d78e9d2\\\"\",\r\n + \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\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 \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1472' + - '1438' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:28 GMT + - Tue, 15 Jun 2021 01:50:11 GMT etag: - - W/"cb7e34c7-1971-455c-9a2a-7e874d78e9d2" + - W/"ceaae48d-a40f-47ca-b1cc-1612f10e253a" expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc3fc1e9-9ebe-4679-a36c-91012bcce983 + - d41a2fdb-5066-4eb8-a7e1-776f2b2954ab status: code: 200 message: OK @@ -539,26 +539,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f02e6df-0000-0700-0000-60221ed50000\"","location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"75984c15ad9d4e5495d37aae1ee4ca4e","dateCreated":"2021-02-09T05:34:12.5968545Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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 + Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1010' + - '2206' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:29 GMT + - Tue, 15 Jun 2021 01:50:11 GMT etag: - - '"7f02e6df-0000-0700-0000-60221ed50000"' + - '"580062fc-0000-0700-0000-60c8073e0000"' expires: - '-1' pragma: @@ -574,7 +573,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '8' + - '9' status: code: 200 message: OK @@ -592,13 +591,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"cb7e34c7-1971-455c-9a2a-7e874d78e9d2\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"ceaae48d-a40f-47ca-b1cc-1612f10e253a\\\"\",\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\": @@ -611,9 +610,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:30 GMT + - Tue, 15 Jun 2021 01:50:13 GMT etag: - - W/"cb7e34c7-1971-455c-9a2a-7e874d78e9d2" + - W/"ceaae48d-a40f-47ca-b1cc-1612f10e253a" expires: - '-1' pragma: @@ -630,15 +629,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2911fb36-82c8-4cd0-81c2-e782f0cff494 + - 7c40d239-e6e7-4047-b059-6c0fe4fb9ec9 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", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": - "Enabled"}}' + "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' headers: Accept: - application/json @@ -649,26 +648,26 @@ interactions: Connection: - keep-alive Content-Length: - - '409' + - '462' Content-Type: - application/json ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"bf182ad9-33aa-481f-ba53-ceb026f54a89\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"38a6148a-c48c-420f-a8bb-2ea2aa15fa8c\\\"\",\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/814fa72e-46fc-48d4-a907-7351d7260220?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -676,7 +675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:31 GMT + - Tue, 15 Jun 2021 01:50:13 GMT expires: - '-1' pragma: @@ -693,9 +692,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23e45cd5-6768-4e32-b67b-88457672e859 + - 6af11255-ab35-444d-9126-2703d5270c0c x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 200 message: OK @@ -713,9 +712,9 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/814fa72e-46fc-48d4-a907-7351d7260220?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -727,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:34 GMT + - Tue, 15 Jun 2021 01:50:16 GMT expires: - '-1' pragma: @@ -744,7 +743,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a40c8318-66d9-48f5-b406-5c4f79edd0d3 + - 302851f3-c8c3-4844-b998-eff6ca66a0da status: code: 200 message: OK @@ -762,13 +761,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"8a348c50-ba96-4f76-bee7-2c4ec799127e\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"04c20047-1789-4dee-b94a-b53c1954747f\\\"\",\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\": @@ -781,9 +780,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:34 GMT + - Tue, 15 Jun 2021 01:50:19 GMT etag: - - W/"8a348c50-ba96-4f76-bee7-2c4ec799127e" + - W/"04c20047-1789-4dee-b94a-b53c1954747f" expires: - '-1' pragma: @@ -800,14 +799,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f90a4de0-7370-4286-b1e4-843118481e3a + - 9a7a821c-51f3-4cb2-a1fb-24ed1942ae9e 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": [{"name": "pecs_cli_test_000002", "properties": - {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_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: @@ -819,26 +819,26 @@ interactions: Connection: - keep-alive Content-Length: - - '621' + - '730' Content-Type: - application/json ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"815dc0be-7be7-48e1-ba90-77efc0272e76\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ca5908e4-b77f-468c-b5c3-7b23cc1cdcc6\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702\",\r\n \"privateLinkServiceConnections\": + \"09f2754d-b38a-435a-ac32-9bcb02c2016c\",\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/\\\"815dc0be-7be7-48e1-ba90-77efc0272e76\\\"\",\r\n + \ \"etag\": \"W/\\\"ca5908e4-b77f-468c-b5c3-7b23cc1cdcc6\\\"\",\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 +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.3b8d2e78-54ac-46ec-abb6-d8946cf3351e\"\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 ],\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/d0b4f198-6a39-447f-b08d-69ed22dc8785?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -861,7 +861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:40 GMT + - Tue, 15 Jun 2021 01:50:28 GMT expires: - '-1' pragma: @@ -874,9 +874,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a96f8def-aece-46c2-8b6b-775c13d03120 + - c02a3b65-6004-4b0a-a85e-d7b25d6ecef1 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 201 message: Created @@ -895,9 +895,109 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?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:50: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: + - 6173c3b8-3b69-4122-9897-95d5781d53a3 + status: + code: 200 + message: OK +- request: + 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/westus/operations/d0b4f198-6a39-447f-b08d-69ed22dc8785?api-version=2021-02-01 + 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 + 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:50: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: + - 30bb1d3e-afe5-4cb2-9d91-4d27839f95f2 + status: + code: 200 + message: OK +- request: + 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/westus/operations/aa965f60-718a-4354-87b4-284e9dc2e439?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -909,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:50 GMT + - Tue, 15 Jun 2021 01:51:11 GMT expires: - '-1' pragma: @@ -926,7 +1026,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 224bac9e-055c-4c26-9eb8-50f3d86eb3a5 + - 2357b53f-4ded-4f6d-8ec3-d954aba41ae9 status: code: 200 message: OK @@ -945,19 +1045,19 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"541e6c56-7cc2-439f-b4e3-e7958b39c1a2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f46a86d4-50ab-4cf5-9114-3565e27ef360\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702\",\r\n \"privateLinkServiceConnections\": + \"09f2754d-b38a-435a-ac32-9bcb02c2016c\",\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/\\\"541e6c56-7cc2-439f-b4e3-e7958b39c1a2\\\"\",\r\n + \ \"etag\": \"W/\\\"f46a86d4-50ab-4cf5-9114-3565e27ef360\\\"\",\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\": @@ -966,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.3b8d2e78-54ac-46ec-abb6-d8946cf3351e\"\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 ],\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}" @@ -978,9 +1078,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:50 GMT + - Tue, 15 Jun 2021 01:51:12 GMT etag: - - W/"541e6c56-7cc2-439f-b4e3-e7958b39c1a2" + - W/"f46a86d4-50ab-4cf5-9114-3565e27ef360" expires: - '-1' pragma: @@ -997,7 +1097,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c4c8118-5c6e-417e-94b4-e7581bd934c9 + - 7f029192-80e8-4172-8e67-119c7e971da7 status: code: 200 message: OK @@ -1015,26 +1115,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"7f0209e1-0000-0700-0000-60221ef20000\"","location":"westus","sku":{"name":"S0"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"75984c15ad9d4e5495d37aae1ee4ca4e","dateCreated":"2021-02-09T05:34:12.5968545Z","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.0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702","name":"cs_cli_test_000002/pecs_cli_test_000002.0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702","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.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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 + Analytics":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1843' + - '3039' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:52 GMT + - Tue, 15 Jun 2021 01:51:15 GMT etag: - - '"7f0209e1-0000-0700-0000-60221ef20000"' + - '"580010fe-0000-0700-0000-60c807830000"' expires: - '-1' pragma: @@ -1050,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '16' status: code: 200 message: OK @@ -1068,12 +1167,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702?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.09f2754d-b38a-435a-ac32-9bcb02c2016c?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/privateEndpointConnections/pecs_cli_test_000002.0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702","name":"cs_cli_test_000002/pecs_cli_test_000002.0f5553d5-f77b-4ff2-90c4-4ddf4fdc0702","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"0c01e2f6-0000-0700-0000-60221ef30000\"","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.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"}}' headers: cache-control: - no-cache @@ -1082,9 +1181,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:52 GMT + - Tue, 15 Jun 2021 01:51:15 GMT etag: - - '"0c01e2f6-0000-0700-0000-60221ef30000"' + - '"0400db06-0000-0700-0000-60c807840000"' expires: - '-1' pragma: @@ -1100,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '107' + - '10' status: code: 200 message: OK @@ -1120,7 +1219,7 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=2021-02-01 response: @@ -1130,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/1ddc0c9f-3311-4034-961c-8a3f872f71a0?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 05:34:54 GMT + - Tue, 15 Jun 2021 01:51:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/1ddc0c9f-3311-4034-961c-8a3f872f71a0?api-version=2021-02-01 + - 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 pragma: - no-cache server: @@ -1151,9 +1250,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fdbe548d-601f-496d-84ed-dcfed5411ee5 + - 9556fed0-2878-403d-bd93-1bc54aaec7aa x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' status: code: 202 message: Accepted @@ -1171,9 +1270,58 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/westus/operations/9dee7659-af6f-4742-9405-ed37649fa3f8?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:28 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: + - d3149636-0e33-4a6f-b8ba-733e8748633e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint delete + Connection: + - keep-alive + 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) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1ddc0c9f-3311-4034-961c-8a3f872f71a0?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1185,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:04 GMT + - Tue, 15 Jun 2021 01:51:38 GMT expires: - '-1' pragma: @@ -1202,7 +1350,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c3e0f9f-82ba-4b46-af02-edb1dc5d2b7b + - 3d542fdc-3ab4-4035-bf2b-7434ea6ecf30 status: code: 200 message: OK @@ -1222,12 +1370,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -1237,7 +1382,7 @@ interactions: content-length: - '0' date: - - Tue, 09 Feb 2021 05:35:14 GMT + - Tue, 15 Jun 2021 01:51:46 GMT expires: - '-1' pragma: @@ -1249,9 +1394,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '2092' + - '68' 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_private_endpoint_connection.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint_connection.yaml index 2a025190c64..6b767e29454 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,7 +1,7 @@ interactions: - request: - body: '{"kind": "TextAnalytics", "location": "centraluseuap", "properties": {"customSubDomainName": - "csclitest000003"}, "sku": {"name": "S1"}}' + body: '{"kind": "TextAnalytics", "sku": {"name": "S"}, "location": "centraluseuap", + "properties": {"customSubDomainName": "csclitest000003"}}' headers: Accept: - application/json @@ -12,32 +12,33 @@ interactions: Connection: - keep-alive Content-Length: - - '136' + - '135' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --custom-domain User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0200a87f-0000-3300-0000-60221ebd0000\"","location":"centraluseuap","sku":{"name":"S1"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"e73c74972eae4aa79edc467bcbefac6c","dateCreated":"2021-02-09T05:33:48.2211364Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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"}}' 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 cache-control: - no-cache content-length: - - '1017' + - '3016' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:49 GMT + - Tue, 15 Jun 2021 01:50:28 GMT etag: - - '"0200a87f-0000-3300-0000-60221ebd0000"' + - '"00005778-0000-3300-0000-60c807620000"' expires: - '-1' pragma: @@ -49,12 +50,160 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '2016' + - '1518' x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' 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: @@ -69,7 +218,7 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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 response: @@ -83,7 +232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:50 GMT + - Tue, 15 Jun 2021 01:51:30 GMT expires: - '-1' pragma: @@ -99,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '84' + - '17' status: code: 200 message: OK @@ -122,16 +271,16 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"13d309c5-b8dd-4763-a9d9-c839ffb2cf33\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a714b1c2-d52a-4c9c-b931-73dfe890e746\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8d5e4720-b95b-4cce-a779-a9e270f6e4e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\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\": @@ -140,7 +289,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/616ce72b-e6ea-4658-ae89-c8363a05153e?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -148,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:33:58 GMT + - Tue, 15 Jun 2021 01:51:35 GMT expires: - '-1' pragma: @@ -161,9 +310,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cab7da93-b7ae-47b1-8365-33dfb86c3752 + - 6b355b89-f21b-4bc3-9dff-a0a2d0d5346a x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1198' status: code: 201 message: Created @@ -181,9 +330,58 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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: + - '*/*' + 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/616ce72b-e6ea-4658-ae89-c8363a05153e?api-version=2021-02-01 + 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\": \"Succeeded\"\r\n}" @@ -195,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:02 GMT + - Tue, 15 Jun 2021 01:51:49 GMT expires: - '-1' pragma: @@ -212,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fde3daec-0e51-4c58-901d-324ecfae12bb + - 0021d246-b31a-46c4-9930-05b40ff7e5f0 status: code: 200 message: OK @@ -230,16 +428,16 @@ interactions: ParameterSetName: - --resource-group --name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"281ec0f6-64a6-4656-97dc-738c4abbc9e4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2df4e406-6766-421a-8447-8c68360466f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8d5e4720-b95b-4cce-a779-a9e270f6e4e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\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\": @@ -252,9 +450,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:02 GMT + - Tue, 15 Jun 2021 01:51:50 GMT etag: - - W/"281ec0f6-64a6-4656-97dc-738c4abbc9e4" + - W/"2df4e406-6766-421a-8447-8c68360466f1" expires: - '-1' pragma: @@ -271,7 +469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b69ec00-4a3d-4364-ba5e-c26ac0ce46c1 + - 278b7c9f-36e8-4a6f-8fdf-a2b86e2e0f5d status: code: 200 message: OK @@ -289,16 +487,16 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"281ec0f6-64a6-4656-97dc-738c4abbc9e4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2df4e406-6766-421a-8447-8c68360466f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8d5e4720-b95b-4cce-a779-a9e270f6e4e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\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\": @@ -311,9 +509,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:02 GMT + - Tue, 15 Jun 2021 01:51:51 GMT etag: - - W/"281ec0f6-64a6-4656-97dc-738c4abbc9e4" + - W/"2df4e406-6766-421a-8447-8c68360466f1" expires: - '-1' pragma: @@ -330,7 +528,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 961bd38d-e674-4a25-9d83-e11a7cda3537 + - a74d2597-da85-46f5-9c35-ef3805c04161 status: code: 200 message: OK @@ -338,7 +536,8 @@ interactions: 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"}}], "virtualNetworkPeerings": + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: @@ -350,27 +549,27 @@ interactions: Connection: - keep-alive Content-Length: - - '502' + - '595' Content-Type: - application/json ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"668ef15c-a494-4835-b345-19d5f755cce8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b2d59cad-74e7-4b0a-8cc5-c031ca33069f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8d5e4720-b95b-4cce-a779-a9e270f6e4e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\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/\\\"668ef15c-a494-4835-b345-19d5f755cce8\\\"\",\r\n + \ \"etag\": \"W/\\\"b2d59cad-74e7-4b0a-8cc5-c031ca33069f\\\"\",\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 +578,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/469491e0-d42f-4bbf-9ee1-bada71c61021?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -387,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:03 GMT + - Tue, 15 Jun 2021 01:51:53 GMT expires: - '-1' pragma: @@ -404,9 +603,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b867cabe-c616-4b98-b5ba-81bde599dc41 + - 49ef9958-3b5a-43c5-915f-07094625a24d x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' status: code: 200 message: OK @@ -424,9 +623,58 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/469491e0-d42f-4bbf-9ee1-bada71c61021?api-version=2021-02-01 + 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 + 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\": \"Succeeded\"\r\n}" @@ -438,7 +686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:06 GMT + - Tue, 15 Jun 2021 01:52:06 GMT expires: - '-1' pragma: @@ -455,7 +703,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 67b62023-8825-46b4-a320-47be4a3a95cc + - 2824daa6-0c52-4a31-a4bd-00e9426aebfe status: code: 200 message: OK @@ -473,21 +721,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"c509835e-ce1e-47c2-9ab0-ef78b6b5d569\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8d5e4720-b95b-4cce-a779-a9e270f6e4e0\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4a3317c4-6225-45f5-97e3-4bc20c68248a\",\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/\\\"c509835e-ce1e-47c2-9ab0-ef78b6b5d569\\\"\",\r\n + \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\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 +750,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:07 GMT + - Tue, 15 Jun 2021 01:52:06 GMT etag: - - W/"c509835e-ce1e-47c2-9ab0-ef78b6b5d569" + - W/"000617ca-b541-4b01-9f75-4b6b6b3001b5" expires: - '-1' pragma: @@ -521,7 +769,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 203ecd18-9d2d-4bb9-8750-540d81f1c764 + - 8b07c2ec-0ce9-4d22-9904-8e4203a9db58 status: code: 200 message: OK @@ -539,26 +787,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0200a87f-0000-3300-0000-60221ebd0000\"","location":"centraluseuap","sku":{"name":"S1"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"e73c74972eae4aa79edc467bcbefac6c","dateCreated":"2021-02-09T05:33:48.2211364Z","customSubDomainName":"csclitest000003","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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: - - '1017' + - '3017' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:09 GMT + - Tue, 15 Jun 2021 01:52:08 GMT etag: - - '"0200a87f-0000-3300-0000-60221ebd0000"' + - '"00006a78-0000-3300-0000-60c807870000"' expires: - '-1' pragma: @@ -574,7 +821,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '9' + - '10' status: code: 200 message: OK @@ -592,13 +839,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"c509835e-ce1e-47c2-9ab0-ef78b6b5d569\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"000617ca-b541-4b01-9f75-4b6b6b3001b5\\\"\",\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\": @@ -611,9 +858,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:09 GMT + - Tue, 15 Jun 2021 01:52:09 GMT etag: - - W/"c509835e-ce1e-47c2-9ab0-ef78b6b5d569" + - W/"000617ca-b541-4b01-9f75-4b6b6b3001b5" expires: - '-1' pragma: @@ -630,15 +877,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b138c63-4ecc-491a-b8c1-7472dac5872a + - 11364f95-d37b-4bba-9d0b-f2527983b05d 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", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [], "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": - "Enabled"}}' + "name": "default", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": + {"addressPrefix": "10.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": + "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' headers: Accept: - application/json @@ -649,26 +896,26 @@ interactions: Connection: - keep-alive Content-Length: - - '409' + - '462' Content-Type: - application/json ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"f84a9511-1ae2-4ed6-bfcf-f20527798db3\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"e10c16e9-f1c8-48b8-bf3c-f7cf05e9b1a8\\\"\",\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/a1ed201b-5e66-4ea8-9b9b-33eec9ccbbb1?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -676,7 +923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:10 GMT + - Tue, 15 Jun 2021 01:52:11 GMT expires: - '-1' pragma: @@ -693,9 +940,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba16e82f-c814-4475-99b7-b62cf27234f4 + - c55f70f5-0fd7-4103-9a6b-502f6cfded89 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -713,9 +960,9 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/a1ed201b-5e66-4ea8-9b9b-33eec9ccbbb1?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -727,7 +974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:13 GMT + - Tue, 15 Jun 2021 01:52:14 GMT expires: - '-1' pragma: @@ -744,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44a5a882-5295-440c-9b1b-8f4479a5d4e8 + - 28aa932d-c0ca-4e2d-ba1a-867c978621e9 status: code: 200 message: OK @@ -762,13 +1009,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"f1dbd4f2-4348-47f9-b626-a2d95d98f5f8\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"58ea2fa0-de19-44e9-a946-5112c3c9f801\\\"\",\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\": @@ -781,9 +1028,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:13 GMT + - Tue, 15 Jun 2021 01:52:14 GMT etag: - - W/"f1dbd4f2-4348-47f9-b626-a2d95d98f5f8" + - W/"58ea2fa0-de19-44e9-a946-5112c3c9f801" expires: - '-1' pragma: @@ -800,14 +1047,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8cebfeb9-933f-47f9-9d5a-7a151ec8ae72 + - b16b7e15-4ec4-4750-b8b4-4286edb82395 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": [{"name": "pecs_cli_test_000002", "properties": - {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_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: @@ -819,26 +1067,26 @@ interactions: Connection: - keep-alive Content-Length: - - '628' + - '737' Content-Type: - application/json ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=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/\\\"d27ab38f-212a-442a-b56c-5924c9f29bb8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"171e1a4b-5eb8-4bbd-8812-c567edd3da94\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"f75f916d-231d-4a26-b889-eba72fd6ad0d\",\r\n \"privateLinkServiceConnections\": + \"d7095ae5-e995-4b8a-b561-5b7073f2ddf3\",\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/\\\"d27ab38f-212a-442a-b56c-5924c9f29bb8\\\"\",\r\n + \ \"etag\": \"W/\\\"171e1a4b-5eb8-4bbd-8812-c567edd3da94\\\"\",\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 +1095,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.4d9485bb-8c56-485e-bc97-775cc50567ee\"\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 ],\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/d124fea5-0c75-484b-8a5c-633ade386417?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: @@ -861,7 +1109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:20 GMT + - Tue, 15 Jun 2021 01:52:23 GMT expires: - '-1' pragma: @@ -874,9 +1122,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b712662c-fe1b-46ac-8484-d788ac83c5b7 + - ce1e5b4b-86ca-4896-bb05-ac532d7f3c74 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: code: 201 message: Created @@ -895,9 +1143,109 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/d124fea5-0c75-484b-8a5c-633ade386417?api-version=2021-02-01 + 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: + - '*/*' + 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:44 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: + - fdd4721e-86d3-4319-8769-cb313976639b + status: + code: 200 + message: OK +- request: + 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\": \"Succeeded\"\r\n}" @@ -909,7 +1257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:31 GMT + - Tue, 15 Jun 2021 01:53:04 GMT expires: - '-1' pragma: @@ -926,7 +1274,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c67d6955-8bdd-4afa-83bf-5cb37618f525 + - 721afa2a-8c6e-44f1-a25a-92b729d70eaf status: code: 200 message: OK @@ -945,19 +1293,19 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --group-id --connection-name -l User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/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/\\\"58b3e63f-75d4-4eca-b0ef-b081c882b831\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"890c6a98-b04a-4259-9172-f12cce4538fa\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"f75f916d-231d-4a26-b889-eba72fd6ad0d\",\r\n \"privateLinkServiceConnections\": + \"d7095ae5-e995-4b8a-b561-5b7073f2ddf3\",\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/\\\"58b3e63f-75d4-4eca-b0ef-b081c882b831\\\"\",\r\n + \ \"etag\": \"W/\\\"890c6a98-b04a-4259-9172-f12cce4538fa\\\"\",\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\": @@ -966,7 +1314,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.4d9485bb-8c56-485e-bc97-775cc50567ee\"\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 ],\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}" @@ -978,9 +1326,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:31 GMT + - Tue, 15 Jun 2021 01:53:04 GMT etag: - - W/"58b3e63f-75d4-4eca-b0ef-b081c882b831" + - W/"890c6a98-b04a-4259-9172-f12cce4538fa" expires: - '-1' pragma: @@ -997,7 +1345,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1c2b4f18-935c-49e8-a4e9-3a0ad37981a7 + - 62b72524-8ad4-4028-a383-45c5146508c0 status: code: 200 message: OK @@ -1015,26 +1363,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"02003e80-0000-3300-0000-60221edc0000\"","location":"centraluseuap","sku":{"name":"S1"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"e73c74972eae4aa79edc467bcbefac6c","dateCreated":"2021-02-09T05:33:48.2211364Z","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.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","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.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview"}],"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":"\"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"}}' headers: cache-control: - no-cache content-length: - - '1850' + - '3850' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:33 GMT + - Tue, 15 Jun 2021 01:53:05 GMT etag: - - '"02003e80-0000-3300-0000-60221edc0000"' + - '"00008878-0000-3300-0000-60c807e20000"' expires: - '-1' pragma: @@ -1050,7 +1397,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '23' + - '22' status: code: 200 message: OK @@ -1068,12 +1415,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004701-0000-3300-0000-60221ede0000\"","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.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"}}' headers: cache-control: - no-cache @@ -1082,9 +1429,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:34 GMT + - Tue, 15 Jun 2021 01:53:07 GMT etag: - - '"00004701-0000-3300-0000-60221ede0000"' + - '"07003162-0000-3300-0000-60c807e40000"' expires: - '-1' pragma: @@ -1100,7 +1447,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '19' status: code: 200 message: OK @@ -1118,12 +1465,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004701-0000-3300-0000-60221ede0000\"","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.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"}}' headers: cache-control: - no-cache @@ -1132,9 +1479,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:34 GMT + - Tue, 15 Jun 2021 01:53:07 GMT etag: - - '"00004701-0000-3300-0000-60221ede0000"' + - '"07003162-0000-3300-0000-60c807e40000"' expires: - '-1' pragma: @@ -1150,15 +1497,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '59' + - '13' 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.f75f916d-231d-4a26-b889-eba72fd6ad0d", - "name": "cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d", + 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", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"00004701-0000-3300-0000-60221ede0000\"", "location": "centraluseuap", "properties": + "\"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": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1178,12 +1525,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004901-0000-3300-0000-60221eeb0000\"","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.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"}}' headers: cache-control: - no-cache @@ -1192,9 +1539,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:35 GMT + - Tue, 15 Jun 2021 01:53:09 GMT etag: - - '"00004901-0000-3300-0000-60221eeb0000"' + - '"07008562-0000-3300-0000-60c808050000"' expires: - '-1' pragma: @@ -1210,9 +1557,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '150' + - '165' x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' status: code: 200 message: OK @@ -1230,12 +1577,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004901-0000-3300-0000-60221eeb0000\"","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.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"}}' headers: cache-control: - no-cache @@ -1244,9 +1591,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:45 GMT + - Tue, 15 Jun 2021 01:53:20 GMT etag: - - '"00004901-0000-3300-0000-60221eeb0000"' + - '"07008562-0000-3300-0000-60c808050000"' expires: - '-1' pragma: @@ -1280,12 +1627,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004901-0000-3300-0000-60221eeb0000\"","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.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"}}' headers: cache-control: - no-cache @@ -1294,9 +1641,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:34:47 GMT + - Tue, 15 Jun 2021 01:53:22 GMT etag: - - '"00004901-0000-3300-0000-60221eeb0000"' + - '"07008562-0000-3300-0000-60c808050000"' expires: - '-1' pragma: @@ -1312,15 +1659,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '10' + - '127' 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.f75f916d-231d-4a26-b889-eba72fd6ad0d", - "name": "cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d", + 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", "type": "Microsoft.CognitiveServices/accounts/privateEndpointConnections", "etag": - "\"00004901-0000-3300-0000-60221eeb0000\"", "location": "centraluseuap", "properties": + "\"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": "Rejected", "description": null, "actionsRequired": "None"}, "provisioningState": "Succeeded"}}' @@ -1340,12 +1687,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004c01-0000-3300-0000-60221f050000\"","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.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"}}' headers: cache-control: - no-cache @@ -1354,9 +1701,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:01 GMT + - Tue, 15 Jun 2021 01:53:45 GMT etag: - - '"00004c01-0000-3300-0000-60221f050000"' + - '"07003d64-0000-3300-0000-60c8082a0000"' expires: - '-1' pragma: @@ -1372,9 +1719,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11722' + - '22354' x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' status: code: 200 message: OK @@ -1392,12 +1739,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?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/privateEndpointConnections/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004c01-0000-3300-0000-60221f050000\"","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.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"}}' headers: cache-control: - no-cache @@ -1406,9 +1753,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:12 GMT + - Tue, 15 Jun 2021 01:53:57 GMT etag: - - '"00004c01-0000-3300-0000-60221f050000"' + - '"07003d64-0000-3300-0000-60c8082a0000"' expires: - '-1' pragma: @@ -1424,7 +1771,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11' + - '9' status: code: 200 message: OK @@ -1442,12 +1789,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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 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.f75f916d-231d-4a26-b889-eba72fd6ad0d","name":"cs_cli_test_000002/pecs_cli_test_000002.f75f916d-231d-4a26-b889-eba72fd6ad0d","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","etag":"\"00004c01-0000-3300-0000-60221f050000\"","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.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"}}]}' headers: cache-control: - no-cache @@ -1456,7 +1803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:12 GMT + - Tue, 15 Jun 2021 01:53:58 GMT expires: - '-1' pragma: @@ -1472,7 +1819,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '19' status: code: 200 message: OK @@ -1492,9 +1839,9 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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.f75f916d-231d-4a26-b889-eba72fd6ad0d?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.d7095ae5-e995-4b8a-b561-5b7073f2ddf3?api-version=2017-04-18 response: body: string: '' @@ -1504,7 +1851,7 @@ interactions: content-length: - '0' date: - - Tue, 09 Feb 2021 05:35:26 GMT + - Tue, 15 Jun 2021 01:54:10 GMT expires: - '-1' pragma: @@ -1516,7 +1863,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '11736' + - '11690' x-ms-ratelimit-remaining-subscription-deletes: - '14998' status: @@ -1536,7 +1883,7 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) AZURECLI/2.19.0 + - python/3.8.8 (Windows-10-10.0.19041-SP0) AZURECLI/2.24.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 response: @@ -1550,7 +1897,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:27 GMT + - Tue, 15 Jun 2021 01:54:11 GMT expires: - '-1' pragma: @@ -1566,7 +1913,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '17' + - '16' status: code: 200 message: OK @@ -1586,7 +1933,7 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.24.0 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.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=2021-02-01 response: @@ -1596,17 +1943,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/90d66230-4255-460c-8730-77773f767f18?api-version=2021-02-01 + - 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 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 05:35:29 GMT + - Tue, 15 Jun 2021 01:54:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operationResults/90d66230-4255-460c-8730-77773f767f18?api-version=2021-02-01 + - 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 pragma: - no-cache server: @@ -1617,9 +1964,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 728e1b8a-bf16-4023-a9f7-2f195969bd93 + - dd48e884-31e1-4605-8940-2d54874a9048 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 202 message: Accepted @@ -1637,9 +1984,9 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - 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/90d66230-4255-460c-8730-77773f767f18?api-version=2021-02-01 + 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 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1651,7 +1998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 05:35:39 GMT + - Tue, 15 Jun 2021 01:54:24 GMT expires: - '-1' pragma: @@ -1668,7 +2015,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44fad7a3-682e-4292-9ba0-9a22fa840ed2 + - 58d04b41-643c-4f0e-bbd8-3bdbb7a2405b status: code: 200 message: OK @@ -1688,12 +2035,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -1703,7 +2047,7 @@ interactions: content-length: - '0' date: - - Tue, 09 Feb 2021 05:35:45 GMT + - Tue, 15 Jun 2021 01:54:32 GMT expires: - '-1' pragma: @@ -1715,9 +2059,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '1071' + - '107' x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' 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 2fff8e56337..d17ed36d272 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 @@ -1,8 +1,8 @@ interactions: - request: - body: '{"kind": "SpeechServices", "location": "centraluseuap", "properties": {"userOwnedStorage": - [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}]}, - "sku": {"name": "S0"}, "identity": {"type": "SystemAssigned"}}' + body: '{"kind": "SpeechServices", "sku": {"name": "S0"}, "identity": {"type": + "SystemAssigned"}, "location": "centraluseuap", "properties": {"userOwnedStorage": + [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}]}}' headers: Accept: - application/json @@ -15,30 +15,31 @@ interactions: Content-Length: - '309' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --storage --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01005dfe-0000-3300-0000-5f9900ae0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b340ce2f81904129b85d3ff80e63f4de","dateCreated":"2020-10-28T05:25:01.8764256Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"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.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"6b3ec1ce-4ad5-4699-9e65-1046d1b1e634","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2511' + - '3490' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:03 GMT + - Tue, 15 Jun 2021 01:49:44 GMT etag: - - '"01005dfe-0000-3300-0000-5f9900ae0000"' + - '"00003878-0000-3300-0000-60c807370000"' expires: - '-1' pragma: @@ -50,9 +51,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '604' + - '529' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -70,26 +71,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=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/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01005dfe-0000-3300-0000-5f9900ae0000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"b340ce2f81904129b85d3ff80e63f4de","dateCreated":"2020-10-28T05:25:01.8764256Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"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.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"6b3ec1ce-4ad5-4699-9e65-1046d1b1e634","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2511' + - '3490' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:04 GMT + - Tue, 15 Jun 2021 01:49:46 GMT etag: - - '"01005dfe-0000-3300-0000-5f9900ae0000"' + - '"00003878-0000-3300-0000-60c807370000"' expires: - '-1' pragma: @@ -105,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '29' + - '41' status: code: 200 message: OK @@ -125,12 +127,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=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: '' @@ -140,7 +139,7 @@ interactions: content-length: - '0' date: - - Wed, 28 Oct 2020 05:25:13 GMT + - Tue, 15 Jun 2021 01:49:51 GMT expires: - '-1' pragma: @@ -152,15 +151,15 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '154' + - '132' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: code: 200 message: OK - request: - body: '{"kind": "SpeechServices", "location": "centraluseuap", "properties": {}, - "sku": {"name": "S0"}, "identity": {"type": "SystemAssigned"}}' + body: '{"kind": "SpeechServices", "sku": {"name": "S0"}, "identity": {"type": + "SystemAssigned"}, "location": "centraluseuap", "properties": {}}' headers: Accept: - application/json @@ -173,30 +172,31 @@ interactions: Content-Length: - '136' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --kind --sku -l --assign-identity --yes User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006dfe-0000-3300-0000-5f9900c10000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2339' + - '3318' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:21 GMT + - Tue, 15 Jun 2021 01:50:03 GMT etag: - - '"01006dfe-0000-3300-0000-5f9900c10000"' + - '"00004878-0000-3300-0000-60c807490000"' expires: - '-1' pragma: @@ -208,9 +208,9 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '455' + - '243' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -228,26 +228,27 @@ interactions: ParameterSetName: - -n -g --storage User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01006dfe-0000-3300-0000-5f9900c10000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*"}],"provisioningState":"Succeeded"},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2339' + - '3318' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:22 GMT + - Tue, 15 Jun 2021 01:50:04 GMT etag: - - '"01006dfe-0000-3300-0000-5f9900c10000"' + - '"00004878-0000-3300-0000-60c807490000"' expires: - '-1' pragma: @@ -263,13 +264,13 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '25' + - '10' status: code: 200 message: OK - request: - body: '{"properties": {"userOwnedStorage": [{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}]}, - "sku": {"name": "S0"}}' + body: '{"sku": {"name": "S0"}, "properties": {"userOwnedStorage": [{"resourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/felixwa-01/providers/Microsoft.Storage/storageAccounts/felixwatest"}]}}' headers: Accept: - application/json @@ -282,30 +283,31 @@ interactions: Content-Length: - '214' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --storage User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01007afe-0000-3300-0000-5f9900c50000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"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.*"}]},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2511' + - '3490' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:27 GMT + - Tue, 15 Jun 2021 01:50:08 GMT etag: - - '"01007afe-0000-3300-0000-5f9900c50000"' + - '"00004a78-0000-3300-0000-60c8074e0000"' expires: - '-1' pragma: @@ -321,7 +323,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '176' + - '133' x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -341,26 +343,27 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - 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=2017-04-18 + 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_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01007afe-0000-3300-0000-5f9900c50000\"","location":"centraluseuap","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://centraluseuap.api.cognitive.microsoft.com/sts/v1.0/issuetoken","provisioningState":"Succeeded","internalId":"95ffd1676c8544928b44d3a1871d9db9","dateCreated":"2020-10-28T05:25:20.9813248Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"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.*"}]},"identity":{"principalId":"4c410574-1541-4b2f-b45d-7bd5d4b6e454","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":"\"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 + 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":{}}}' headers: cache-control: - no-cache content-length: - - '2511' + - '3490' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Oct 2020 05:25:28 GMT + - Tue, 15 Jun 2021 01:50:08 GMT etag: - - '"01007afe-0000-3300-0000-5f9900c50000"' + - '"00004a78-0000-3300-0000-60c8074e0000"' expires: - '-1' pragma: @@ -376,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '19' + - '17' status: code: 200 message: OK @@ -396,12 +399,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-cognitiveservices/6.3.0 Azure-SDK-For-Python AZURECLI/2.14.0 - accept-language: - - en-US + - AZURECLI/2.24.0 azsdk-python-mgmt-cognitiveservices/12.0.0 Python/3.8.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=2017-04-18 + 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: '' @@ -411,7 +411,7 @@ interactions: content-length: - '0' date: - - Wed, 28 Oct 2020 05:25:34 GMT + - Tue, 15 Jun 2021 01:50:16 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-envoy-upstream-service-time: - - '194' + - '103' x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_api_properties.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_api_properties.py index d198dd37da4..89f8f902ec2 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_api_properties.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_api_properties.py @@ -34,6 +34,10 @@ def test_cognitiveservices_create_api_properties(self, resource_group): ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') self.assertEqual(ret.exit_code, 0) + self.kwargs.update({ + 'sname': self.create_random_name(prefix='cs_cli_test_', length=16) + }) + # test to create cognitive services account self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} ' '--api-properties {apiPropertiesJson} --yes', 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 794d7a95145..35124481fae 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 @@ -4,7 +4,6 @@ # -------------------------------------------------------------------------------------------- import unittest -import time from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer from azure.cli.testsdk.decorators import serial_test @@ -41,6 +40,10 @@ def test_cognitiveservices_user_owned_storage(self, resource_group): ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') self.assertEqual(ret.exit_code, 0) + self.kwargs.update({ + 'sname': self.create_random_name(prefix='cs_cli_test_', length=16) + }) + # test to create cognitive services account self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} ' '--assign-identity --yes', @@ -78,13 +81,11 @@ def test_cognitiveservices_encryption(self, resource_group): checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Creating')]) + self.check('properties.provisioningState', 'Succeeded')]) + + + account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() - for i in range(10): - time.sleep(15) - account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() - if 'Creating' != account['properties']['provisioningState']: - break self.assertEqual(account['identity']['type'], 'SystemAssigned') self.assertTrue(account['properties']['encryption'] is not None) @@ -104,13 +105,7 @@ def test_cognitiveservices_encryption(self, resource_group): checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Creating')]) - - for i in range(10): - time.sleep(15) # sleep() is mocked in replay mode, so just use a large value. - account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() - if 'Creating' != account['properties']['provisioningState']: - break + self.check('properties.provisioningState', 'Succeeded')]) self.cmd('az cognitiveservices account update -n {sname} -g {rg} --encryption {encryption}') 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 217e515b5cd..3b15ceb6127 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 @@ -3,7 +3,6 @@ # 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 @@ -118,7 +117,7 @@ def test_cognitiveservices_account_list_usage(self, resource_group): self.kwargs.update({ 'name': self.create_random_name(prefix='cs_cli_test_', length=16), 'kind': 'TextAnalytics', - 'sku': 'S0', + 'sku': 'S', 'location': 'westeurope' }) 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 98b31e33784..316ceba4bad 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 @@ -35,6 +35,11 @@ def test_cognitiveservices_custom_domain(self, resource_group): ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') self.assertEqual(ret.exit_code, 0) + self.kwargs.update({ + 'sname': self.create_random_name(prefix='cs_cli_test_', length=16), + 'customdomain': self.create_random_name(prefix='csclitest', length=16), + }) + # test to create cognitive services account self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', checks=[self.check('name', '{sname}'), diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_identity.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_identity.py index 6a2ca08dfb1..974575bc592 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_identity.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_identity.py @@ -29,13 +29,9 @@ def test_cognitiveservices_identity_assign_when_create(self, resource_group): checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Creating')]) + self.check('properties.provisioningState', 'Succeeded')]) - for i in range(10): - time.sleep(15) - account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() - if 'Creating' != account['properties']['provisioningState']: - break + account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() self.assertEqual(account['identity']['type'], 'SystemAssigned') @@ -60,13 +56,9 @@ def test_cognitiveservices_identity(self, resource_group): checks=[self.check('name', '{sname}'), self.check('location', '{location}'), self.check('sku.name', '{sku}'), - self.check('properties.provisioningState', 'Creating')]) + self.check('properties.provisioningState', 'Succeeded')]) - for i in range(10): - time.sleep(15) # when generating recording, use a large value such as 15 - account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() - if 'Creating' != account['properties']['provisioningState']: - break + account = self.cmd('az cognitiveservices account show -n {sname} -g {rg}').get_output_in_json() self.assertEqual(self.cmd('az cognitiveservices account identity show -n {sname} -g {rg}').get_output_in_json(), {}) 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 b13f39e9c9c..487651c7d32 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 @@ -17,7 +17,7 @@ def test_cognitiveservices_private_endpoint(self, resource_group): self.kwargs.update({ 'sname': sname, 'kind': 'TextAnalytics', - 'sku': 'S0', + 'sku': 'S', 'vnetname': sname, 'pename': 'pe' + sname, 'customdomain': customdomain, @@ -79,7 +79,7 @@ def test_cognitiveservices_private_endpoint_connection(self, resource_group): self.kwargs.update({ 'sname': sname, 'kind': 'TextAnalytics', - 'sku': 'S1', + 'sku': 'S', 'vnetname': sname, 'pename': 'pe' + sname, 'customdomain': customdomain, diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 7e5943e46dd..b7c44f5affd 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==2.0.0 azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.3.0 azure-mgmt-cdn==11.0.0 -azure-mgmt-cognitiveservices==6.3.0 +azure-mgmt-cognitiveservices==12.0.0 azure-mgmt-compute==21.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 34d9702d4c4..2f32469f34d 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==2.0.0 azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.3.0 azure-mgmt-cdn==11.0.0 -azure-mgmt-cognitiveservices==6.3.0 +azure-mgmt-cognitiveservices==12.0.0 azure-mgmt-compute==21.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 846d5a17d83..6c085549d7f 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==2.0.0 azure-mgmt-billing==1.0.0 azure-mgmt-botservice==0.3.0 azure-mgmt-cdn==11.0.0 -azure-mgmt-cognitiveservices==6.3.0 +azure-mgmt-cognitiveservices==12.0.0 azure-mgmt-compute==21.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index f87d7effc37..d0686409a71 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -72,7 +72,7 @@ 'azure-mgmt-billing==1.0.0', 'azure-mgmt-botservice~=0.3.0', 'azure-mgmt-cdn==11.0.0', - 'azure-mgmt-cognitiveservices~=6.3.0', + 'azure-mgmt-cognitiveservices~=12.0.0', 'azure-mgmt-compute~=21.0.0', 'azure-mgmt-consumption~=2.0', 'azure-mgmt-containerinstance~=1.4',