vw_data_pools
Creates, updates, deletes, gets or lists a vw_data_pools
resource.
Overview
Name | vw_data_pools |
Type | View |
Id | azure.autonomous_dev_platform.vw_data_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.dataPoolId') as "data_pool_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.locations') as "locations",
JSON_EXTRACT(properties, '$.tags') as "tags",
subscriptionId,
resourceGroupName,
accountName,
dataPoolName
FROM azure.autonomous_dev_platform.data_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.dataPoolId') as "data_pool_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.locations') as "locations",
json_extract_path_text(properties, '$.tags') as "tags",
subscriptionId,
resourceGroupName,
accountName,
dataPoolName
FROM azure.autonomous_dev_platform.data_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';