Skip to main content

test_job_streams

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

Overview

Nametest_job_streams
TypeResource
Idazure.automation.test_job_streams

Fields

NameDatatypeDescription
idtextGets or sets the id of the resource.
automationAccountNametextfield from the properties object
jobStreamIdtextfield from the properties object
job_stream_idtextfield from the properties object
resourceGroupNametextfield from the properties object
runbookNametextfield 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, jobStreamId, resourceGroupName, runbookName, subscriptionIdRetrieve a test job stream of the test job identified by runbook name and stream id.
list_by_test_jobSELECTautomationAccountName, resourceGroupName, runbookName, subscriptionIdRetrieve a list of test job streams identified by runbook name.

SELECT examples

Retrieve a list of test job streams identified by runbook name.

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