Skip to main content

vw_environments_worker_pools

Creates, updates, deletes, gets or lists a vw_environments_worker_pools resource.

Overview

Namevw_environments_worker_pools
TypeView
Idazure.app_service.vw_environments_worker_pools

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';