vw_throughput_pools
Creates, updates, deletes, gets or lists a vw_throughput_pools resource.
Overview
| Name | vw_throughput_pools |
| Type | View |
| Id | azure.cosmos_db.vw_throughput_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.maxThroughput') as "max_throughput",
subscriptionId,
resourceGroupName,
throughputPoolName
FROM azure.cosmos_db.throughput_pools
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.maxThroughput') as "max_throughput",
subscriptionId,
resourceGroupName,
throughputPoolName
FROM azure.cosmos_db.throughput_pools
WHERE subscriptionId = 'replace-me';