vw_schedules
Creates, updates, deletes, gets or lists a vw_schedules
resource.
Overview
Name | vw_schedules |
Type | View |
Id | azure.lab_services.vw_schedules |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
systemData as system_data,
JSON_EXTRACT(properties, '$.startAt') as "start_at",
JSON_EXTRACT(properties, '$.stopAt') as "stop_at",
JSON_EXTRACT(properties, '$.recurrencePattern') as "recurrence_pattern",
JSON_EXTRACT(properties, '$.timeZoneId') as "time_zone_id",
JSON_EXTRACT(properties, '$.notes') as "notes",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceOperationError') as "resource_operation_error",
subscriptionId,
resourceGroupName,
labName,
scheduleName
FROM azure.lab_services.schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me';
SELECT
systemData as system_data,
json_extract_path_text(properties, '$.startAt') as "start_at",
json_extract_path_text(properties, '$.stopAt') as "stop_at",
json_extract_path_text(properties, '$.recurrencePattern') as "recurrence_pattern",
json_extract_path_text(properties, '$.timeZoneId') as "time_zone_id",
json_extract_path_text(properties, '$.notes') as "notes",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceOperationError') as "resource_operation_error",
subscriptionId,
resourceGroupName,
labName,
scheduleName
FROM azure.lab_services.schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me';