vw_environments_worker_pools
Creates, updates, deletes, gets or lists a vw_environments_worker_pools
resource.
Overview
Name | vw_environments_worker_pools |
Type | View |
Id | azure.app_service.vw_environments_worker_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,
kind as kind,
type as type,
sku as sku,
JSON_EXTRACT(properties, '$.workerSizeId') as "worker_size_id",
JSON_EXTRACT(properties, '$.computeMode') as "compute_mode",
JSON_EXTRACT(properties, '$.workerSize') as "worker_size",
JSON_EXTRACT(properties, '$.workerCount') as "worker_count",
JSON_EXTRACT(properties, '$.instanceNames') as "instance_names",
subscriptionId,
resourceGroupName,
name,
workerPoolName
FROM azure.app_service.environments_worker_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';
SELECT
id as id,
name as name,
kind as kind,
type as type,
sku as sku,
json_extract_path_text(properties, '$.workerSizeId') as "worker_size_id",
json_extract_path_text(properties, '$.computeMode') as "compute_mode",
json_extract_path_text(properties, '$.workerSize') as "worker_size",
json_extract_path_text(properties, '$.workerCount') as "worker_count",
json_extract_path_text(properties, '$.instanceNames') as "instance_names",
subscriptionId,
resourceGroupName,
name,
workerPoolName
FROM azure.app_service.environments_worker_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';