dsc_compilation_job_streams
Creates, updates, deletes, gets or lists a dsc_compilation_job_streams
resource.
Overview
Name | dsc_compilation_job_streams |
Type | Resource |
Id | azure.automation.dsc_compilation_job_streams |
Fields
- vw_dsc_compilation_job_streams
- dsc_compilation_job_streams
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the id of the resource. |
automationAccountName | text | field from the properties object |
jobId | text | field from the properties object |
jobStreamId | text | field from the properties object |
job_stream_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
stream_text | text | field from the properties object |
stream_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
summary | text | field from the properties object |
time | text | field from the properties object |
value | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the id of the resource. |
properties | object | Definition of the job stream. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | automationAccountName, jobId, jobStreamId, resourceGroupName, subscriptionId | Retrieve the job stream identified by job stream id. |
list_by_job | SELECT | automationAccountName, jobId, resourceGroupName, subscriptionId | Retrieve all the job streams for the compilation Job. |
SELECT
examples
Retrieve all the job streams for the compilation Job.
- vw_dsc_compilation_job_streams
- dsc_compilation_job_streams
SELECT
id,
automationAccountName,
jobId,
jobStreamId,
job_stream_id,
resourceGroupName,
stream_text,
stream_type,
subscriptionId,
summary,
time,
value
FROM azure.automation.vw_dsc_compilation_job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND jobId = '{{ jobId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
properties
FROM azure.automation.dsc_compilation_job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND jobId = '{{ jobId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';