vw_throughput_pool_accounts
Creates, updates, deletes, gets or lists a vw_throughput_pool_accounts
resource.
Overview
Name | vw_throughput_pool_accounts |
Type | View |
Id | azure.cosmos_db.vw_throughput_pool_accounts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.accountResourceIdentifier') as "account_resource_identifier",
JSON_EXTRACT(properties, '$.accountLocation') as "account_location",
JSON_EXTRACT(properties, '$.accountInstanceId') as "account_instance_id",
subscriptionId,
resourceGroupName,
throughputPoolName,
throughputPoolAccountName
FROM azure.cosmos_db.throughput_pool_accounts
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND throughputPoolName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.accountResourceIdentifier') as "account_resource_identifier",
json_extract_path_text(properties, '$.accountLocation') as "account_location",
json_extract_path_text(properties, '$.accountInstanceId') as "account_instance_id",
subscriptionId,
resourceGroupName,
throughputPoolName,
throughputPoolAccountName
FROM azure.cosmos_db.throughput_pool_accounts
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND throughputPoolName = 'replace-me';