vw_jobs
Creates, updates, deletes, gets or lists a vw_jobs
resource.
Overview
Name | vw_jobs |
Type | View |
Id | azure.ml_services.vw_jobs |
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, '$.componentId') as "component_id",
JSON_EXTRACT(properties, '$.computeId') as "compute_id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.experimentName') as "experiment_name",
JSON_EXTRACT(properties, '$.identity') as "identity",
JSON_EXTRACT(properties, '$.isArchived') as "is_archived",
JSON_EXTRACT(properties, '$.jobType') as "job_type",
JSON_EXTRACT(properties, '$.notificationSetting') as "notification_setting",
JSON_EXTRACT(properties, '$.services') as "services",
JSON_EXTRACT(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
workspaceName,
id
FROM azure.ml_services.jobs
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, '$.componentId') as "component_id",
json_extract_path_text(properties, '$.computeId') as "compute_id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.experimentName') as "experiment_name",
json_extract_path_text(properties, '$.identity') as "identity",
json_extract_path_text(properties, '$.isArchived') as "is_archived",
json_extract_path_text(properties, '$.jobType') as "job_type",
json_extract_path_text(properties, '$.notificationSetting') as "notification_setting",
json_extract_path_text(properties, '$.services') as "services",
json_extract_path_text(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
workspaceName,
id
FROM azure.ml_services.jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';