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

NameDatatypeDescription
idtextGets or sets the id of the resource.
automationAccountNametextfield from the properties object
jobNametextfield 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, jobName, jobStreamId, resourceGroupName, subscriptionIdRetrieve the job stream identified by job stream id.
list_by_jobSELECTautomationAccountName, jobName, resourceGroupName, subscriptionIdRetrieve a list of jobs streams identified by job name.

SELECT examples

Retrieve a list of jobs streams identified by job name.

SELECT
id,
automationAccountName,
jobName,
jobStreamId,
job_stream_id,
resourceGroupName,
stream_text,
stream_type,
subscriptionId,
summary,
time,
value
FROM azure.automation.vw_job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';