test_job_streams
Creates, updates, deletes, gets or lists a test_job_streams
resource.
Overview
Name | test_job_streams |
Type | Resource |
Id | azure.automation.test_job_streams |
Fields
- vw_test_job_streams
- test_job_streams
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the id of the resource. |
automationAccountName | text | field from the properties object |
jobStreamId | text | field from the properties object |
job_stream_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
runbookName | text | field from the properties object |
stream_text | text | field from the properties object |
stream_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
summary | text | field from the properties object |
time | text | field from the properties object |
value | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the id of the resource. |
properties | object | Definition of the job stream. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | automationAccountName, jobStreamId, resourceGroupName, runbookName, subscriptionId | Retrieve a test job stream of the test job identified by runbook name and stream id. |
list_by_test_job | SELECT | automationAccountName, resourceGroupName, runbookName, subscriptionId | Retrieve a list of test job streams identified by runbook name. |
SELECT
examples
Retrieve a list of test job streams identified by runbook name.
- vw_test_job_streams
- test_job_streams
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 }}';
SELECT
id,
properties
FROM azure.automation.test_job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runbookName = '{{ runbookName }}'
AND subscriptionId = '{{ subscriptionId }}';