Skip to main content

vw_jobs

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

Overview

Namevw_jobs
TypeView
Idazure.ml_services.vw_jobs

Fields

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

SQL Definition

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';