vw_dsc_compilation_job_streams
Creates, updates, deletes, gets or lists a vw_dsc_compilation_job_streams
resource.
Overview
Name | vw_dsc_compilation_job_streams |
Type | View |
Id | azure.automation.vw_dsc_compilation_job_streams |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
JSON_EXTRACT(properties, '$.jobStreamId') as "job_stream_id",
JSON_EXTRACT(properties, '$.time') as "time",
JSON_EXTRACT(properties, '$.streamType') as "stream_type",
JSON_EXTRACT(properties, '$.streamText') as "stream_text",
JSON_EXTRACT(properties, '$.summary') as "summary",
JSON_EXTRACT(properties, '$.value') as "value",
subscriptionId,
resourceGroupName,
automationAccountName,
jobId,
jobStreamId
FROM azure.automation.dsc_compilation_job_streams
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND jobId = 'replace-me';
SELECT
id as id,
json_extract_path_text(properties, '$.jobStreamId') as "job_stream_id",
json_extract_path_text(properties, '$.time') as "time",
json_extract_path_text(properties, '$.streamType') as "stream_type",
json_extract_path_text(properties, '$.streamText') as "stream_text",
json_extract_path_text(properties, '$.summary') as "summary",
json_extract_path_text(properties, '$.value') as "value",
subscriptionId,
resourceGroupName,
automationAccountName,
jobId,
jobStreamId
FROM azure.automation.dsc_compilation_job_streams
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND automationAccountName = 'replace-me' AND jobId = 'replace-me';