Skip to main content

dsc_compilation_job_streams

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

Overview

Namedsc_compilation_job_streams
TypeResource
Idazure.automation.dsc_compilation_job_streams

Fields

NameDatatypeDescription
idtextGets or sets the id of the resource.
automationAccountNametextfield from the properties object
jobIdtextfield from the properties object
jobStreamIdtextfield from the properties object
job_stream_idtextfield from the properties object
resourceGroupNametextfield from the properties object
stream_texttextfield from the properties object
stream_typetextfield from the properties object
subscriptionIdtextfield from the properties object
summarytextfield from the properties object
timetextfield from the properties object
valuetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTautomationAccountName, jobId, jobStreamId, resourceGroupName, subscriptionIdRetrieve the job stream identified by job stream id.
list_by_jobSELECTautomationAccountName, jobId, resourceGroupName, subscriptionIdRetrieve all the job streams for the compilation Job.

SELECT examples

Retrieve all the job streams for the compilation Job.

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