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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the id of the resource.
propertiesobjectGets or sets the id of the job stream.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, automationAccountName, jobId, jobStreamId, subscriptionIdRetrieve the job stream identified by job stream id.
list_by_jobselectresourceGroupName, automationAccountName, jobId, subscriptionIdRetrieve all the job streams for the compilation Job.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
automationAccountNamestringThe name of the automation account.
jobIdstring (uuid)The job id.
jobStreamIdstringThe job stream id.
resourceGroupNamestringName of an Azure Resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Retrieve the job stream identified by job stream id.

SELECT
id,
properties
FROM azure.automation.dsc_compilation_job_streams
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND jobId = '{{ jobId }}' -- required
AND jobStreamId = '{{ jobStreamId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;