Skip to main content

job_streams

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

Overview

Namejob_streams
TypeResource
Idazure.automation.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
getselectsubscriptionId, resourceGroupName, automationAccountName, jobName, jobStreamIdclientRequestIdRetrieve the job stream identified by job stream id.
list_by_jobselectresourceGroupName, automationAccountName, jobName, subscriptionId$filter, clientRequestIdRetrieve a list of jobs streams identified by job name.

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.
jobNamestringThe job name.
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.
$filterstringThe filter to apply on the operation.
clientRequestIdstringIdentifies this specific client request.

SELECT examples

Retrieve the job stream identified by job stream id.

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