vw_session_host_managements
Creates, updates, deletes, gets or lists a vw_session_host_managements
resource.
Overview
Name | vw_session_host_managements |
Type | View |
Id | azure.desktop_virtualization.vw_session_host_managements |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.scheduledDateTimeZone') as "scheduled_date_time_zone",
JSON_EXTRACT(properties, '$.update') as "update",
subscriptionId,
resourceGroupName,
hostPoolName
FROM azure.desktop_virtualization.session_host_managements
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hostPoolName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.scheduledDateTimeZone') as "scheduled_date_time_zone",
json_extract_path_text(properties, '$.update') as "update",
subscriptionId,
resourceGroupName,
hostPoolName
FROM azure.desktop_virtualization.session_host_managements
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hostPoolName = 'replace-me';