vw_schedules
Creates, updates, deletes, gets or lists a vw_schedules
resource.
Overview
Name | vw_schedules |
Type | View |
Id | azure.ml_services.vw_schedules |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.action') as "action",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.isEnabled') as "is_enabled",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.trigger') as "trigger",
subscriptionId,
resourceGroupName,
workspaceName,
name
FROM azure.ml_services.schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.properties') as "properties",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.action') as "action",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.isEnabled') as "is_enabled",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.trigger') as "trigger",
subscriptionId,
resourceGroupName,
workspaceName,
name
FROM azure.ml_services.schedules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';