vw_agent_pools
Creates, updates, deletes, gets or lists a vw_agent_pools
resource.
Overview
Name | vw_agent_pools |
Type | View |
Id | azure.container_registry.vw_agent_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,
location as location,
type as type,
tags as tags,
systemData as system_data,
JSON_EXTRACT(properties, '$.count') as "count",
JSON_EXTRACT(properties, '$.tier') as "tier",
JSON_EXTRACT(properties, '$.os') as "os",
JSON_EXTRACT(properties, '$.virtualNetworkSubnetResourceId') as "virtual_network_subnet_resource_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
agentPoolName
FROM azure.container_registry.agent_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
systemData as system_data,
json_extract_path_text(properties, '$.count') as "count",
json_extract_path_text(properties, '$.tier') as "tier",
json_extract_path_text(properties, '$.os') as "os",
json_extract_path_text(properties, '$.virtualNetworkSubnetResourceId') as "virtual_network_subnet_resource_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
agentPoolName
FROM azure.container_registry.agent_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';