vw_pools
Creates, updates, deletes, gets or lists a vw_pools
resource.
Overview
Name | vw_pools |
Type | View |
Id | azure.devops_infrastructure.vw_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.maximumConcurrency') as "maximum_concurrency",
JSON_EXTRACT(properties, '$.organizationProfile') as "organization_profile",
JSON_EXTRACT(properties, '$.agentProfile') as "agent_profile",
JSON_EXTRACT(properties, '$.fabricProfile') as "fabric_profile",
JSON_EXTRACT(properties, '$.devCenterProjectResourceId') as "dev_center_project_resource_id",
subscriptionId,
resourceGroupName,
poolName
FROM azure.devops_infrastructure.pools
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.maximumConcurrency') as "maximum_concurrency",
json_extract_path_text(properties, '$.organizationProfile') as "organization_profile",
json_extract_path_text(properties, '$.agentProfile') as "agent_profile",
json_extract_path_text(properties, '$.fabricProfile') as "fabric_profile",
json_extract_path_text(properties, '$.devCenterProjectResourceId') as "dev_center_project_resource_id",
subscriptionId,
resourceGroupName,
poolName
FROM azure.devops_infrastructure.pools
WHERE subscriptionId = 'replace-me';