vw_application_groups
Creates, updates, deletes, gets or lists a vw_application_groups
resource.
Overview
Name | vw_application_groups |
Type | View |
Id | azure.desktop_virtualization.vw_application_groups |
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, '$.hostPoolArmPath') as "host_pool_arm_path",
JSON_EXTRACT(properties, '$.workspaceArmPath') as "workspace_arm_path",
JSON_EXTRACT(properties, '$.applicationGroupType') as "application_group_type",
JSON_EXTRACT(properties, '$.cloudPcResource') as "cloud_pc_resource",
JSON_EXTRACT(properties, '$.showInFeed') as "show_in_feed",
subscriptionId,
resourceGroupName,
applicationGroupName
FROM azure.desktop_virtualization.application_groups
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, '$.hostPoolArmPath') as "host_pool_arm_path",
json_extract_path_text(properties, '$.workspaceArmPath') as "workspace_arm_path",
json_extract_path_text(properties, '$.applicationGroupType') as "application_group_type",
json_extract_path_text(properties, '$.cloudPcResource') as "cloud_pc_resource",
json_extract_path_text(properties, '$.showInFeed') as "show_in_feed",
subscriptionId,
resourceGroupName,
applicationGroupName
FROM azure.desktop_virtualization.application_groups
WHERE subscriptionId = 'replace-me';