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
The following fields are returned by SELECT
queries:
- get
- list_by_job
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the id of the resource. |
properties | object | Gets or sets the id of the job stream. |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the id of the resource. |
properties | object | Gets or sets the id of the job stream. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , automationAccountName , jobId , jobStreamId , subscriptionId | Retrieve the job stream identified by job stream id. | |
list_by_job | select | resourceGroupName , automationAccountName , jobId , subscriptionId | Retrieve 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.
Name | Datatype | Description |
---|---|---|
automationAccountName | string | The name of the automation account. |
jobId | string (uuid) | The job id. |
jobStreamId | string | The job stream id. |
resourceGroupName | string | Name of an Azure Resource group. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list_by_job
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
;
Retrieve all the job streams for the compilation Job.
SELECT
id,
properties
FROM azure.automation.dsc_compilation_job_streams
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND jobId = '{{ jobId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;