vw_scaling_plans
Creates, updates, deletes, gets or lists a vw_scaling_plans
resource.
Overview
Name | vw_scaling_plans |
Type | View |
Id | azure.desktop_virtualization.vw_scaling_plans |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
managedBy as managed_by,
kind as kind,
etag as etag,
identity as identity,
sku as sku,
plan as plan,
JSON_EXTRACT(properties, '$.objectId') as "object_id",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.friendlyName') as "friendly_name",
JSON_EXTRACT(properties, '$.timeZone') as "time_zone",
JSON_EXTRACT(properties, '$.hostPoolType') as "host_pool_type",
JSON_EXTRACT(properties, '$.exclusionTag') as "exclusion_tag",
JSON_EXTRACT(properties, '$.schedules') as "schedules",
JSON_EXTRACT(properties, '$.hostPoolReferences') as "host_pool_references",
subscriptionId,
resourceGroupName,
scalingPlanName
FROM azure.desktop_virtualization.scaling_plans
WHERE subscriptionId = 'replace-me';
SELECT
managedBy as managed_by,
kind as kind,
etag as etag,
identity as identity,
sku as sku,
plan as plan,
json_extract_path_text(properties, '$.objectId') as "object_id",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.friendlyName') as "friendly_name",
json_extract_path_text(properties, '$.timeZone') as "time_zone",
json_extract_path_text(properties, '$.hostPoolType') as "host_pool_type",
json_extract_path_text(properties, '$.exclusionTag') as "exclusion_tag",
json_extract_path_text(properties, '$.schedules') as "schedules",
json_extract_path_text(properties, '$.hostPoolReferences') as "host_pool_references",
subscriptionId,
resourceGroupName,
scalingPlanName
FROM azure.desktop_virtualization.scaling_plans
WHERE subscriptionId = 'replace-me';