Skip to main content

vw_schedules

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

Overview

Namevw_schedules
TypeView
Idazure.dev_test_labs.vw_schedules

Fields

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

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.taskType') as "task_type",
JSON_EXTRACT(properties, '$.weeklyRecurrence') as "weekly_recurrence",
JSON_EXTRACT(properties, '$.dailyRecurrence') as "daily_recurrence",
JSON_EXTRACT(properties, '$.hourlyRecurrence') as "hourly_recurrence",
JSON_EXTRACT(properties, '$.timeZoneId') as "time_zone_id",
JSON_EXTRACT(properties, '$.notificationSettings') as "notification_settings",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
JSON_EXTRACT(properties, '$.targetResourceId') as "target_resource_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.uniqueIdentifier') as "unique_identifier",
subscriptionId,
resourceGroupName,
labName,
name
FROM azure.dev_test_labs.schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me';